Delete makeuser

moving on from ansible
This commit is contained in:
deepend 2024-01-02 22:20:57 +00:00
parent 7b2fff09b3
commit 124e2da9fa
1 changed files with 0 additions and 38 deletions

View File

@ -1,38 +0,0 @@
#!/bin/bash
# ---------------------------------------------------------------------------
# makeuser - tilde new user creation
# Usage: makeuser [-h|--help] <username> <email> "<pubkey>"
# ---------------------------------------------------------------------------
#
# Forked from tilde.team's make user script (
PROGNAME=${0##*/}
VERSION="0.4"
GEN_TDP="./gen_tdp"
CONFIG=./setenv
. $CONFIG
source include/functions
[[ $(id -u) == 0 ]] && error_exit "Do not run this script as root."
case $1 in
-h | --help)
usage; exit ;;
-* | --*)
usage; error_exit "unknown option $1" ;;
*)
[[ $# -ne 3 ]] && error_exit "not enough args"
$(sudo grep -qiw $1 $BANNED) && error_exit "$1 is on the ban list!"
#adding new user
makeuser_no_ansible $1 $2
add_account_recovery $1 $2
#Thunix specific section
source include/ansible.sh
# End Thunix specific section
;;
esac