TWEAK_USERS_GID

This commit is contained in:
neingeist 2023-01-29 00:53:01 +01:00
parent 10ef3975d1
commit a1e710380e

View file

@ -11,4 +11,9 @@ if [ -n "$TWEAK_USER_HOME" ]; then
usermod --home "$TWEAK_USER_HOME" "$USER_NAME" usermod --home "$TWEAK_USER_HOME" "$USER_NAME"
fi fi
if [ -n "$TWEAK_USERS_GID" ]; then
echo "Setting gid of group users to $TWEAK_USERS_GID"
groupmod -g "$TWEAK_USERS_GID" users
fi
echo "[openssh-server-tweaks] done" echo "[openssh-server-tweaks] done"