From: Chris Koeritz Date: Thu, 14 Feb 2013 22:52:32 +0000 (-0500) Subject: fixing umask to take out other access. X-Git-Tag: 2.140.90~1109^2 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=3feaa7cbbdf395fde6a5e9a83ddefbea05b93706;p=feisty_meow.git fixing umask to take out other access. --- diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index bb7878c9..465a864c 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -79,8 +79,8 @@ if [ -z "$NECHUNG" ]; then ############## # umask sets a permission mask for all file creations. the mask used here - # disallows writing by the "group" and "others" categories. - umask 022 + # disallows writes by the "group" and disallows "others" completely. + umask 027 # ulimit sets user limits. we set the maximum allowed core dump file size # to zero, because it is obnoxious to see the core dumps from crashed # programs lying around everywhere.