| 
									
										
										
										
											2008-05-30 16:47:24 +00:00
										 |  |  | #!/bin/sh | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-12 07:52:59 +00:00
										 |  |  | ASTETCDIR="__ASTERISK_ETC_DIR__" | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | ASTSBINDIR="__ASTERISK_SBIN_DIR__" | 
					
						
							|  |  |  | ASTVARRUNDIR="__ASTERISK_VARRUN_DIR__" | 
					
						
							|  |  |  | ASTVARLOGDIR="__ASTERISK_LOG_DIR__" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CLIARGS="$*"			# Grab any args passed to safe_asterisk | 
					
						
							|  |  |  | TTY=9				# TTY (if you want one) for Asterisk to run on | 
					
						
							|  |  |  | CONSOLE=yes			# Whether or not you want a console | 
					
						
							|  |  |  | #NOTIFY=root@localhost		# Who to notify about crashes | 
					
						
							|  |  |  | #EXEC=/path/to/somescript	# Run this command if Asterisk crashes | 
					
						
							|  |  |  | #LOGFILE="${ASTVARLOGDIR}/safe_asterisk.log"	# Where to place the normal logfile (disabled if blank) | 
					
						
							|  |  |  | #SYSLOG=local0			# Which syslog facility to use (disabled if blank) | 
					
						
							|  |  |  | MACHINE=`hostname`		# To specify which machine has crashed when getting the mail | 
					
						
							|  |  |  | DUMPDROP="${DUMPDROP:-/tmp}" | 
					
						
							|  |  |  | RUNDIR="${RUNDIR:-/tmp}" | 
					
						
							| 
									
										
										
										
											2006-01-24 22:06:37 +00:00
										 |  |  | SLEEPSECS=4 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | ASTPIDFILE="${ASTVARRUNDIR}/asterisk.pid" | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 20:22:08 +00:00
										 |  |  | # comment this line out to have this script _not_ kill all mpg123 processes when | 
					
						
							|  |  |  | # asterisk exits | 
					
						
							|  |  |  | KILLALLMPG123=1 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 20:22:08 +00:00
										 |  |  | # run asterisk with this priority | 
					
						
							|  |  |  | PRIORITY=0 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 20:22:08 +00:00
										 |  |  | # set system filemax on supported OSes if this variable is set | 
					
						
							|  |  |  | # SYSMAXFILES=262144 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 20:22:08 +00:00
										 |  |  | # Asterisk allows full permissions by default, so set a umask, if you want | 
					
						
							|  |  |  | # restricted permissions. | 
					
						
							|  |  |  | #UMASK=022 | 
					
						
							| 
									
										
										
										
											2008-12-16 19:54:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 20:22:08 +00:00
										 |  |  | # 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 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-01 12:17:33 +00:00
										 |  |  | message() { | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 	if test -n "$TTY" && test "$TTY" != "no"; then | 
					
						
							|  |  |  | 		echo "$1" >/dev/${TTY} | 
					
						
							|  |  |  | 	fi | 
					
						
							|  |  |  | 	if test -n "$SYSLOG"; then | 
					
						
							|  |  |  | 		logger -p "${SYSLOG}.warn" -t safe_asterisk[$$] "$1" | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 	fi | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 	if test -n "$LOGFILE"; then | 
					
						
							|  |  |  | 		echo "safe_asterisk[$$]: $1" >>"$LOGFILE" | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 	fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-05 03:25:35 +00:00
										 |  |  | # Check if Asterisk is already running.  If it is, then bug out, because | 
					
						
							|  |  |  | # starting safe_asterisk when Asterisk is running is very bad. | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | VERSION=`"${ASTSBINDIR}/asterisk" -nrx 'core show version' 2>/dev/null` | 
					
						
							|  |  |  | if test "`echo $VERSION | cut -c 1-8`" = "Asterisk"; then | 
					
						
							| 
									
										
										
										
											2008-05-05 03:25:35 +00:00
										 |  |  | 	message "Asterisk is already running.  $0 will exit now." | 
					
						
							|  |  |  | 	exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | # since we're going to change priority and open files limits, we need to be | 
					
						
							|  |  |  | # root. if running asterisk as other users, pass that to asterisk on the command | 
					
						
							|  |  |  | # line. | 
					
						
							|  |  |  | # if we're not root, fall back to standard everything. | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | if test `id -u` != 0; then | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 	echo "Oops. I'm not root. Falling back to standard prio and file max." >&2 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 	echo "This is NOT suitable for large systems." >&2 | 
					
						
							|  |  |  | 	PRIORITY=0 | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 	message "safe_asterisk was started by `id -n` (uid `id -u`)." | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | else | 
					
						
							| 
									
										
										
										
											2010-01-12 03:21:40 +00:00
										 |  |  | 	if `uname -s | grep Linux >/dev/null 2>&1`; then | 
					
						
							| 
									
										
										
										
											2014-10-09 08:10:35 +00:00
										 |  |  | 		# maximum number of open files is set to the system maximum | 
					
						
							|  |  |  | 		# divided by two if MAXFILES is not set. | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 		if test -z "$MAXFILES"; then | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 			# just check if file-max is readable | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 			if test -r /proc/sys/fs/file-max; then | 
					
						
							| 
									
										
										
										
											2014-10-09 08:10:35 +00:00
										 |  |  | 				MAXFILES=$((`cat /proc/sys/fs/file-max` / 2)) | 
					
						
							|  |  |  | 				# don't exceed upper limit of 2^20 for open | 
					
						
							|  |  |  | 				# files on systems where file-max is > 2^21 | 
					
						
							|  |  |  | 				if test $MAXFILES -gt 1048576; then | 
					
						
							|  |  |  | 					MAXFILES=1048576 | 
					
						
							|  |  |  | 				fi | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 			fi | 
					
						
							|  |  |  | 		fi | 
					
						
							|  |  |  | 		SYSCTL_MAXFILES="fs.file-max" | 
					
						
							| 
									
										
										
										
											2010-01-12 03:21:40 +00:00
										 |  |  | 	elif `uname -s | grep Darwin /dev/null 2>&1`; then | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 		SYSCTL_MAXFILES="kern.maxfiles" | 
					
						
							|  |  |  | 	fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 	if test -n "$SYSMAXFILES"; then | 
					
						
							|  |  |  | 		if test -n "$SYSCTL_MAXFILES"; then | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 			sysctl -w $SYSCTL_MAXFILES=$SYSMAXFILES | 
					
						
							|  |  |  | 		fi | 
					
						
							|  |  |  | 	fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# set the process's filemax to whatever set above | 
					
						
							|  |  |  | 	ulimit -n $MAXFILES | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 	if test ! -d "${ASTVARRUNDIR}"; then | 
					
						
							|  |  |  | 		mkdir -p "${ASTVARRUNDIR}" | 
					
						
							|  |  |  | 		chmod 770 "${ASTVARRUNDIR}" | 
					
						
							| 
									
										
										
										
											2009-02-21 13:13:35 +00:00
										 |  |  | 	fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | if test -n "$UMASK"; then | 
					
						
							| 
									
										
										
										
											2013-08-29 20:22:08 +00:00
										 |  |  | 	umask $UMASK | 
					
						
							| 
									
										
										
										
											2008-12-16 19:54:11 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Let Asterisk dump core | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ulimit -c unlimited | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-27 23:15:47 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Don't fork when running "safely" | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | ASTARGS="" | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | if test -n "$TTY" && test "$TTY" != "no"; then | 
					
						
							|  |  |  | 	if test -c /dev/tty${TTY}; then | 
					
						
							| 
									
										
										
										
											2003-02-18 18:15:30 +00:00
										 |  |  | 		TTY=tty${TTY} | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 	elif test -c /dev/vc/${TTY}; then | 
					
						
							| 
									
										
										
										
											2003-02-18 18:15:30 +00:00
										 |  |  | 		TTY=vc/${TTY} | 
					
						
							| 
									
										
										
										
											2016-09-09 13:26:01 +02:00
										 |  |  | 	elif test "$TTY" = "9"; then  # ignore default if it was untouched | 
					
						
							|  |  |  | 		# If there is no /dev/tty9 and not /dev/vc/9 we don't | 
					
						
							|  |  |  | 		# necessarily want to die at this point. Pretend that | 
					
						
							|  |  |  | 		# TTY wasn't set. | 
					
						
							|  |  |  | 		TTY= | 
					
						
							| 
									
										
										
										
											2003-02-18 18:15:30 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 		message "Cannot find specified TTY (${TTY})" | 
					
						
							| 
									
										
										
										
											2003-02-18 18:15:30 +00:00
										 |  |  | 		exit 1 | 
					
						
							|  |  |  | 	fi | 
					
						
							| 
									
										
										
										
											2016-09-09 13:26:01 +02:00
										 |  |  | 	if test -n "$TTY"; then | 
					
						
							|  |  |  | 		ASTARGS="${ASTARGS} -vvvg" | 
					
						
							|  |  |  | 		if test "$CONSOLE" != "no"; then | 
					
						
							|  |  |  | 			ASTARGS="${ASTARGS} -c" | 
					
						
							|  |  |  | 		fi | 
					
						
							| 
									
										
										
										
											2002-05-27 23:15:47 +00:00
										 |  |  | 	fi | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2011-12-20 20:06:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | if test ! -d "${RUNDIR}"; then | 
					
						
							| 
									
										
										
										
											2011-12-20 20:06:17 +00:00
										 |  |  | 	message "${RUNDIR} does not exist, creating" | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 	if ! mkdir -p "${RUNDIR}"; then | 
					
						
							| 
									
										
										
										
											2011-12-20 20:06:17 +00:00
										 |  |  | 		message "Unable to create ${RUNDIR}" | 
					
						
							|  |  |  | 		exit 1 | 
					
						
							|  |  |  | 	fi | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | if test ! -w "${DUMPDROP}"; then | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 	message "Cannot write to ${DUMPDROP}" | 
					
						
							| 
									
										
										
										
											2003-02-18 18:15:30 +00:00
										 |  |  | 	exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2002-05-27 23:15:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-11 16:37:16 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Don't die if stdout/stderr can't be written to | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2007-06-18 17:50:01 +00:00
										 |  |  | trap '' PIPE | 
					
						
							| 
									
										
										
										
											2007-05-11 16:37:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-19 21:11:31 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Run scripts to set any environment variables or do any other system-specific setup needed | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-12 07:52:59 +00:00
										 |  |  | if test -d "${ASTETCDIR}/startup.d"; then | 
					
						
							|  |  |  | 	for script in "${ASTETCDIR}/startup.d/"*.sh; do | 
					
						
							|  |  |  | 		if test -r "${script}"; then | 
					
						
							|  |  |  | 			. "${script}" | 
					
						
							| 
									
										
										
										
											2006-04-19 21:11:31 +00:00
										 |  |  | 		fi | 
					
						
							|  |  |  | 	done | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2002-05-27 23:15:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | run_asterisk() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 	while :; do | 
					
						
							|  |  |  | 		if test -n "$TTY" && test "$TTY" != "no"; then | 
					
						
							| 
									
										
										
										
											2011-12-20 20:06:17 +00:00
										 |  |  | 			cd "${RUNDIR}" | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 			stty sane </dev/${TTY} | 
					
						
							|  |  |  | 			nice -n $PRIORITY "${ASTSBINDIR}/asterisk" -f ${CLIARGS} ${ASTARGS} >/dev/${TTY} 2>&1 </dev/${TTY} | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2011-12-20 20:06:17 +00:00
										 |  |  | 			cd "${RUNDIR}" | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 			nice -n $PRIORITY "${ASTSBINDIR}/asterisk" -f ${CLIARGS} ${ASTARGS} >/dev/null 2>&1 </dev/null | 
					
						
							| 
									
										
										
										
											2002-05-27 23:15:47 +00:00
										 |  |  | 		fi | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 		EXITSTATUS=$? | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 		message "Asterisk ended with exit status $EXITSTATUS" | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 		if test $EXITSTATUS -eq 0; then | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 			# Properly shutdown.... | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 			message "Asterisk shutdown normally." | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 			exit 0 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 		elif test $EXITSTATUS -gt 128; then | 
					
						
							|  |  |  | 			EXITSIGNAL=$((EXITSTATUS - 128)) | 
					
						
							| 
									
										
										
										
											2014-06-09 12:12:25 +00:00
										 |  |  | 			message "Asterisk exited on signal $EXITSIGNAL." | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 			if test -n "$NOTIFY"; then | 
					
						
							| 
									
										
										
										
											2004-12-01 05:10:32 +00:00
										 |  |  | 				echo "Asterisk on $MACHINE exited on signal $EXITSIGNAL.  Might want to take a peek." | \ | 
					
						
							| 
									
										
										
										
											2014-06-09 12:12:25 +00:00
										 |  |  | 				mail -s "Asterisk on $MACHINE died (sig $EXITSIGNAL)" $NOTIFY | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 			fi | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 			if test -n "$EXEC"; then | 
					
						
							| 
									
										
										
										
											2006-08-14 01:13:32 +00:00
										 |  |  | 				$EXEC | 
					
						
							|  |  |  | 			fi | 
					
						
							| 
									
										
										
										
											2007-05-11 16:37:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			PID=`cat ${ASTPIDFILE}` | 
					
						
							| 
									
										
										
										
											2010-01-12 03:21:40 +00:00
										 |  |  | 			DATE=`date "+%Y-%m-%dT%H:%M:%S%z"` | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 			if test -f "${RUNDIR}/core.${PID}"; then | 
					
						
							|  |  |  | 				mv "${RUNDIR}/core.${PID}" "${DUMPDROP}/core.`hostname`-$DATE" & | 
					
						
							|  |  |  | 			elif test -f "${RUNDIR}/core"; then | 
					
						
							|  |  |  | 				mv "${RUNDIR}/core" "${DUMPDROP}/core.`hostname`-$DATE" & | 
					
						
							| 
									
										
										
										
											2003-02-18 18:15:30 +00:00
										 |  |  | 			fi | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 			message "Asterisk died with code $EXITSTATUS." | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			PID=`cat ${ASTPIDFILE}` | 
					
						
							| 
									
										
										
										
											2010-01-12 03:21:40 +00:00
										 |  |  | 			DATE=`date "+%Y-%m-%dT%H:%M:%S%z"` | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 			if test -f "${RUNDIR}/core.${PID}"; then | 
					
						
							|  |  |  | 				mv "${RUNDIR}/core.${PID}" "${DUMPDROP}/core.`hostname`-$DATE" & | 
					
						
							|  |  |  | 			elif test -f "${RUNDIR}/core"; then | 
					
						
							|  |  |  | 				mv "${RUNDIR}/core" "${DUMPDROP}/core.`hostname`-$DATE" & | 
					
						
							| 
									
										
										
										
											2003-02-18 18:15:30 +00:00
										 |  |  | 			fi | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 		fi | 
					
						
							| 
									
										
										
										
											2007-09-06 16:57:20 +00:00
										 |  |  | 		message "Automatically restarting Asterisk." | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 		sleep $SLEEPSECS | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | 		if test "0$KILLALLMPG123" -gt 0; then | 
					
						
							| 
									
										
										
										
											2008-10-07 18:00:48 +00:00
										 |  |  | 			pkill -9 mpg123 | 
					
						
							| 
									
										
										
										
											2006-01-24 21:45:42 +00:00
										 |  |  | 		fi | 
					
						
							| 
									
										
										
										
											2002-07-30 14:17:55 +00:00
										 |  |  | 	done | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-04 20:16:40 +00:00
										 |  |  | if test -n "$ASTSAFE_FOREGROUND"; then | 
					
						
							|  |  |  | 	run_asterisk | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  | 	run_asterisk & | 
					
						
							|  |  |  | fi |