mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	set ASTVARRUNDIR=$(localstatedir)/run/asterisk as default path
When running asterisk as non-root and without this patch the pidfile wants to go into /var/run/asterisk.pid. This directory is not writable for the non-root user and changing permissions is not an option. Putting it in /var/run/asterisk/asterisk.pid makes it possible to set permissions on the /var/run/asterisk dir so everything works as it should be. Patched committed is based on pabelanger's patch. (closes issue #13153) Reported by: pabelanger Patches: 2009012900_bug13153-nonrootscripts.diff.txt uploaded by mvanbaak (license 7) Review: http://reviewboard.digium.com/r/139/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@177852 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -12,7 +12,8 @@ MACHINE=`hostname`			# To specify which machine has crashed when getting the mai | ||||
| DUMPDROP=/tmp | ||||
| SLEEPSECS=4 | ||||
| ASTSBINDIR=__ASTERISK_SBIN_DIR__ | ||||
| ASTPIDFILE=__ASTERISK_VARRUN_DIR__/asterisk.pid | ||||
| ASTVARRUNDIR=__ASTERISK_VARRUN_DIR__ | ||||
| ASTPIDFILE=${ASTVARRUNDIR}/asterisk.pid | ||||
|  | ||||
| # comment this line out to have this script _not_ kill all mpg123 processes when | ||||
| # asterisk exits | ||||
| @@ -91,6 +92,11 @@ else | ||||
| 	# set the process's filemax to whatever set above | ||||
| 	ulimit -n $MAXFILES | ||||
|  | ||||
| 	if [ ! -d ${ASTVARRUNDIR} ]; then | ||||
| 		mkdir -p ${ASTVARRUNDIR} | ||||
| 		chmod 770 ${ASTVARRUNDIR} | ||||
| 	fi | ||||
|  | ||||
| fi | ||||
|  | ||||
| if test "x$UMASK" != "x"; then | ||||
|   | ||||
		Reference in New Issue
	
	Block a user