Skip to content

Instantly share code, notes, and snippets.

@sndsgd
Last active August 29, 2015 14:03
Show Gist options
  • Save sndsgd/2cd695ab34a812a52ee9 to your computer and use it in GitHub Desktop.
Save sndsgd/2cd695ab34a812a52ee9 to your computer and use it in GitHub Desktop.
#!/bin/bash
FPM_CONF=/etc/init/php5-fpm.conf
if [ "$UID" -ne 0 ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
if [[ $(grep -E '^umask [[:digit:]]{4}' "$FPM_CONF") ]]; then
echo 'this file already contains a umask declaration'
exit
fi
sed -i.bak -e'/^stop on/a \
\
# non default umask\
umask 0002' "$FPM_CONF"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment