Zealot/build/scripts/postinst
Gregory Ballantine 23288ac043
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
Added DEBHELPER token to postinst script
2022-09-01 15:52:21 -04:00

27 lines
546 B
Bash
Executable File

#!/bin/sh
GETENT_USER=$(getent passwd adept)
GETENT_GROUP=$(getent group adept)
# Create the adept user if it doesn't already exist
if [ "$GETENT_USER" = "" ]; then
useradd -r adept
else
echo "The 'adept' user already exists, skipping creation."
fi
# Create the adept group if it doesn't already exist
if [ "$GETENT_GROUP" = "" ]; then
groupadd adept
usermod -aG adept adept
else
echo "The 'adept' group already exists, skipping creation."
fi
# Change the directory ownership of /etc
chown -R adept:adept /etc/adept
#DEBHELPER#
exit 0