1 2 3 4 5 6 7 8 9 10 11
post_install() { if ! id -u "minecraft" >/dev/null 2>&1; then useradd --system --user-group --create-home -K UMASK=0022 --home /opt/mscs minecraft fi } post_remove() { if id -u "minecraft" >/dev/null 2>&1; then userdel --system --remove-home minecraft fi }