From 3feaa7cbbdf395fde6a5e9a83ddefbea05b93706 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 14 Feb 2013 17:52:32 -0500 Subject: [PATCH] fixing umask to take out other access. --- scripts/core/variables.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.34.1