From 326653d5e869e95f1032f368010446c8af90b17f Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Tue, 16 Dec 2008 19:54:11 +0000 Subject: [PATCH] Set up umask as a possible configuration option. (closes issue #13753) Reported by: irroot git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@164798 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- contrib/scripts/safe_asterisk | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contrib/scripts/safe_asterisk b/contrib/scripts/safe_asterisk index 6dfb953730..6f3b5ebef1 100644 --- a/contrib/scripts/safe_asterisk +++ b/contrib/scripts/safe_asterisk @@ -24,6 +24,10 @@ PRIORITY=0 # set system filemax on supported OSes if this variable is set # SYSMAXFILES=262144 +# Asterisk allows full permissions by default, so set a umask, if you want +# restricted permissions. +#UMASK=022 + # set max files open with ulimit. On linux systems, this will be automatically # set to the system's maximum files open devided by two, if not set here. # MAXFILES=32768 @@ -89,6 +93,10 @@ else fi +if test "x$UMASK" != "x"; then + umask $UMASK +fi + # # Let Asterisk dump core #