fixing umask to take out other access.
authorChris Koeritz <fred@gruntose.com>
Thu, 14 Feb 2013 22:52:32 +0000 (17:52 -0500)
committerChris Koeritz <fred@gruntose.com>
Thu, 14 Feb 2013 22:52:32 +0000 (17:52 -0500)
scripts/core/variables.sh

index bb7878c92ca1b6596a02b9a8354125d8f071abca..465a864c90f06e720aaa2b437186148000f4756b 100644 (file)
@@ -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.