You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
271 B
Plaintext

#!/usr/bin/with-contenv bash
echo "[openssh-server-tweaks] started"
if [ -n "$TWEAK_PROFILE_UMASK" ]; then
echo "Setting profile umask to $TWEAK_PROFILE_UMASK"
sed -i "s/^umask .*/umask $TWEAK_PROFILE_UMASK/" /etc/profile
fi
echo "[openssh-server-tweaks] done"