Skip to content
Snippets Groups Projects
safe_asterisk 1.94 KiB
Newer Older
  • Learn to ignore specific revisions
  • Mark Spencer's avatar
    Mark Spencer committed
    #!/bin/sh
    
    CLIARGS="$*"		# Grab any args passed to safe_asterisk
    
    Mark Spencer's avatar
    Mark Spencer committed
    TTY=9			# TTY (if you want one) for Asterisk to run on
    CONSOLE=yes		# Whether or not you want a console
    
    #NOTIFY=ben@alkaloid.net	# Who to notify about crashes
    
    MACHINE=`hostname`      # To specify which machine has crashed when getting the mail
    
    DUMPDROP=/tmp
    
    Mark Spencer's avatar
    Mark Spencer committed
    #
    # Don't fork when running "safely"
    #
    
    Mark Spencer's avatar
    Mark Spencer committed
    ASTARGS=""
    
    Mark Spencer's avatar
    Mark Spencer committed
    if [ "$TTY" != "" ]; then
    
    	if [ -c /dev/tty${TTY} ]; then
    		TTY=tty${TTY}
    	elif [ -c /dev/vc/${TTY} ]; then
    		TTY=vc/${TTY}
    	else
    		echo "Cannot find your TTY (${TTY})" >&2
    		exit 1
    	fi
    
    	ASTARGS="${ASTARGS} -vvvg"
    
    Mark Spencer's avatar
    Mark Spencer committed
    	if [ "$CONSOLE" != "no" ]; then
    		ASTARGS="${ASTARGS} -c"
    	fi
    fi
    
    if [ ! -w ${DUMPDROP} ]; then	
    	echo "Cannot write to ${DUMPDROP}" >&2
    	exit 1
    fi
    
    Mark Spencer's avatar
    Mark Spencer committed
    
    #
    # Let Asterisk dump core
    #
    ulimit -c unlimited
    
    
    Mark Spencer's avatar
    Mark Spencer committed
    #launch_asterisk()
    #{
    #}
    
    Mark Spencer's avatar
    Mark Spencer committed
    run_asterisk()
    {
    	while :; do 
    
    		if [ "$TTY" != "" ]; then
    
    			cd /tmp
    			stty sane < /dev/${TTY}
    
    			asterisk ${CLIARGS} ${ASTARGS} >& /dev/${TTY} < /dev/${TTY}
    
    Mark Spencer's avatar
    Mark Spencer committed
    		else
    
    			asterisk ${CLIARGS} ${ASTARGS}
    
    Mark Spencer's avatar
    Mark Spencer committed
    		fi
    
    Mark Spencer's avatar
    Mark Spencer committed
    		EXITSTATUS=$?
    
    		echo "Asterisk ended with exit status $EXITSTATUS"
    
    Mark Spencer's avatar
    Mark Spencer committed
    		if [ "$EXITSTATUS" = "0" ]; then
    			# Properly shutdown....
    			echo "Asterisk shutdown normally."
    			exit 0
    		elif [ $EXITSTATUS -gt 128 ]; then
    			let EXITSIGNAL=EXITSTATUS-128
    			echo "Asterisk exited on signal $EXITSIGNAL."
    			if [ "$NOTIFY" != "" ]; then
    
    				echo "Asterisk on $MACHINE exited on signal $EXITSIGNAL.  Might want to take a peek." | \
    
    Mark Spencer's avatar
    Mark Spencer committed
    				mail -s "Asterisk Died" $NOTIFY
    			fi
    
                            if [ -f /tmp/core ]; then
    				mv /tmp/core ${DUMPDROP}/core.`hostname`-`date -Iseconds` &
    			fi
    
    Mark Spencer's avatar
    Mark Spencer committed
    		else
    
    Mark Spencer's avatar
    Mark Spencer committed
    			if [ "${EXITSTATUS}" = "0" ]; then
    				echo "Asterisk ended normally.  Aborting."
    				exit 0
    			else
    				echo "Asterisk died with code $EXITSTATUS."
    	                        if [ -f /tmp/core ]; then
    					mv /tmp/core ${DUMPDROP}/core.`hostname`-`date -Iseconds` &
    				fi
    
    Mark Spencer's avatar
    Mark Spencer committed
    		fi
    		echo "Automatically restarting Asterisk."
    
    Mark Spencer's avatar
    Mark Spencer committed
    	done
    }
    
    run_asterisk &