mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	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
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| # $Id$
 | |
| #
 | |
| # Mon Jun 04 2007 Iñaki Baz Castillo <ibc@in.ilimit.es>
 | |
| # - Eliminated SAFE_ASTERISK since it doesn't work as LSB script (it could require a independent "safe_asterisk" init script).
 | |
| # - Load and use the standar "/lib/lsb/init-functions".
 | |
| # - Addded "--oknodo" to "start-stop-daemon" for compatibility with LSB:
 | |
| #   http://www.linux-foundation.org/spec/refspecs/LSB_3.0.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html
 | |
| #
 | |
| # Thu Nov 17 2005 Gregory Boehnlein <damin@nacs.net>
 | |
| # - Reversed behavior of LD_ASSUME_KERNEL=2.4.1
 | |
| # - Added detailed failure messages
 | |
| #
 | |
| # Sun Jul 18 2004 Gregory Boehnlein <damin@nacs.net>
 | |
| # - Added test for safe_asterisk
 | |
| # - Changed "stop gracefully" to "stop now"
 | |
| # - Added support for -U and -G command line options
 | |
| # - Modified "reload" to call asterisk -rx 'reload' 
 | |
| 
 | |
| PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
 | |
| NAME=asterisk
 | |
| DESC="Asterisk PBX"
 | |
| # Full path to asterisk binary
 | |
| DAEMON=__ASTERISK_SBIN_DIR__/asterisk
 | |
| ASTVARRUNDIR=__ASTERISK_VARRUN_DIR__
 | |
| ASTETCDIR=__ASTERISK_ETC_DIR__
 | |
| TRUE=/bin/true
 | |
| 
 | |
| # Uncomment this ONLY if you know what you are doing.
 | |
| # export LD_ASSUME_KERNEL=2.4.1
 | |
| 
 | |
| # Uncomment the following and set them to the user/groups that you
 | |
| # want to run Asterisk as. NOTE: this requires substantial work to
 | |
| # be sure that Asterisk's environment has permission to write the
 | |
| # files required  for  its  operation, including logs, its comm
 | |
| # socket, the asterisk database, etc.
 | |
| #AST_USER="asterisk"
 | |
| #AST_GROUP="asterisk"
 | |
| 
 | |
| set -e
 | |
| 
 | |
| if ! [ -x $DAEMON ] ; then
 | |
|         echo "ERROR: $DAEMON not found"
 | |
|         exit 0
 | |
| fi
 | |
| 
 | |
| if ! [ -d $ASTETCDIR ] ; then
 | |
|         echo "ERROR: $ASTETCDIR directory not found"
 | |
|         exit 0
 | |
| fi
 | |
| 
 | |
| # Use the LSB standar functions for services management
 | |
| . /lib/lsb/init-functions
 | |
| 
 | |
| case "$1" in
 | |
|   start)
 | |
| 	# Check if Asterisk is already running.  If it is, then bug out, because
 | |
| 	# starting up Asterisk when Asterisk is already running is very bad.
 | |
| 	VERSION=`${DAEMON} -rx 'core show version' || ${TRUE}`
 | |
| 	if [ "`echo $VERSION | cut -c 1-8`" = "Asterisk" ]; then
 | |
| 		echo "Asterisk is already running.  $0 will exit now."
 | |
| 		exit 1
 | |
| 	fi
 | |
| 
 | |
| 	log_begin_msg "Starting $DESC: $NAME"
 | |
| 	if [ ! -d $ASTVARRUNDIR ]; then
 | |
| 		mkdir -p $ASTVARRUNDIR
 | |
| 	fi
 | |
| 
 | |
| 	if [ $AST_USER ] ; then
 | |
| 		ASTARGS="-U $AST_USER"
 | |
| 		chown $AST_USER $ASTVARRUNDIR
 | |
| 	fi
 | |
| 	if [ $AST_GROUP ] ; then
 | |
| 		ASTARGS="$ASTARGS -G $AST_GROUP"
 | |
| 		chown $AST_GROUP $ASTVARRUNDIR
 | |
| 	fi
 | |
| 	# "start-stop-daemon --oknodo" returns 0 even if Asterisk was already running (as LSB expects):
 | |
| 	start-stop-daemon --start --oknodo --exec $DAEMON -- $ASTARGS
 | |
| 	log_end_msg $?
 | |
| 	;;
 | |
|   stop)
 | |
| 	log_begin_msg "Stopping $DESC: $NAME"
 | |
| 	# "start-stop-daemon --oknodo" returns 0 even if Asterisk was already stopped (as LSB expects):
 | |
| 	start-stop-daemon --stop --oknodo --exec $DAEMON
 | |
| 	log_end_msg $?
 | |
| 	;;
 | |
|   reload)
 | |
| 	echo "Reloading $DESC configuration files."
 | |
| 	$DAEMON -rx 'module reload' > /dev/null 2> /dev/null
 | |
| 	;;
 | |
|   restart|force-reload)
 | |
| 	$0 stop
 | |
| 	sleep 2  # It needs some time to really be stopped.
 | |
| 	$0 start
 | |
| 	# "restart|force-reload" starts Asterisk and returns 0 even if Asterisk was stopped (as LSB expects).
 | |
| 	;;
 | |
|   *)
 | |
| 	N=/etc/init.d/$NAME
 | |
| 	echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
 | |
| 	exit 1
 | |
| 	;;
 | |
| esac
 |