initial commit

This commit is contained in:
Gregor Michels 2023-10-26 16:45:29 +02:00
commit 74412c51a4
9 changed files with 229 additions and 0 deletions

13
delete_user Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
set -e
USER=$1
usage() {
printf "usage: %s <username>\n"
}
[ $# != 1 ] && usage && exit 1
pveum user delete "${USER}"