From: Chris Koeritz Date: Mon, 24 Nov 2014 23:28:39 +0000 (-0500) Subject: reverted to umask 022 to allow others to read, since turning off the rx bits for... X-Git-Tag: 2.140.90~739 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=739d4e83d4b72d838e3ee5cd6a3368a08875bedc;p=feisty_meow.git reverted to umask 022 to allow others to read, since turning off the rx bits for others totally confuses some things. --- diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 86812925..2394821b 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -78,9 +78,12 @@ if [ -z "$NECHUNG" ]; then ############## - # umask sets a permission mask for all file creations. the mask used here - # disallows writes by the "group" and disallows "others" completely. - umask 027 + # umask sets a permission mask for all file creations. + # this mask disallows writes by "group" and "others". + umask 022 + # this mask 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.