vern-scripts/tilserv/deny

18 lines
351 B
Plaintext
Raw Permalink Normal View History

2022-11-09 17:03:47 +00:00
#!/usr/bin/env -S bash -e
[[ -z "$1" ]] && {
printf 'Usage: %s username\n' "$0"
exit 1
}
[[ -f "/var/tmp/register/$1" ]] || {
printf "Application from %s does not exist\n" "$1"
exit 2
}
read -rp "Deny $1's application? [y/N] "
2023-01-31 17:19:57 +00:00
[[ $REPLY =~ [Yy] ]] && {
rm -f "/var/tmp/register/$1"
echo "$1" >> "/var/tmp/users-denied-$(date -I)"
} || exit 3