add requirement for root user

This commit is contained in:
Andrew Beals 2020-09-13 00:35:00 +00:00
parent 7d78e23432
commit e542b32947
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,8 @@ config_dir=/etc/advisorycircular
run_dir=/var/lib/advisorycircular
user=advisorycircular
if test `whoami` != root; then echo you must run this as root ; exit 1 ; fi
# Create install, config, and run directories if they doesn't exist.
echo Creating directories
mkdir -p "$install_dir"