123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- #!/bin/sh
- 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=ben@alkaloid.net # Who to notify about crashes
- MACHINE=`hostname` # To specify which machine has crashed when getting the mail
- DUMPDROP=/tmp
- ASTSBINDIR=__ASTERISK_SBIN_DIR__
- ASTPIDFILE=__ASTERISK_VARRUN_DIR__/asterisk.pid
- #
- # Don't fork when running "safely"
- #
- ASTARGS=""
- 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"
- if [ "$CONSOLE" != "no" ]; then
- ASTARGS="${ASTARGS} -c"
- fi
- fi
- if [ ! -w ${DUMPDROP} ]; then
- echo "Cannot write to ${DUMPDROP}" >&2
- exit 1
- fi
- #
- # Let Asterisk dump core
- #
- ulimit -c unlimited
- #
- # Don't die if stdout/stderr can't be written to
- #
- trap '' PIPE
- #
- # Run scripts to set any environment variables or do any other system-specific setup needed
- #
- if [ -d /etc/asterisk/startup.d ]; then
- for script in /etc/asterisk/startup.d/*.sh; do
- if [ -x ${script} ]; then
- source ${script}
- fi
- done
- fi
- run_asterisk()
- {
- while :; do
- if [ "$TTY" != "" ]; then
- cd /tmp
- stty sane < /dev/${TTY}
- ${ASTSBINDIR}/asterisk -f ${CLIARGS} ${ASTARGS} >& /dev/${TTY} < /dev/${TTY}
- else
- cd /tmp
- ${ASTSBINDIR}/asterisk -f ${CLIARGS} ${ASTARGS}
- fi
- EXITSTATUS=$?
- echo "Asterisk ended with exit status $EXITSTATUS"
- 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." | \
- mail -s "Asterisk Died" $NOTIFY
- fi
- PID=`cat ${ASTPIDFILE}`
- if [ -f /tmp/core.${PID} ]; then
- mv /tmp/core.${PID} ${DUMPDROP}/core.`hostname`-`date -Iseconds` &
- elif [ -f /tmp/core ]; then
- mv /tmp/core ${DUMPDROP}/core.`hostname`-`date -Iseconds` &
- fi
- else
- if [ "${EXITSTATUS}" = "0" ]; then
- echo "Asterisk ended normally. Aborting."
- exit 0
- else
- echo "Asterisk died with code $EXITSTATUS."
- PID=`cat ${ASTPIDFILE}`
- if [ -f /tmp/core.${PID} ]; then
- mv /tmp/core.${PID} ${DUMPDROP}/core.`hostname`-`date -Iseconds` &
- elif [ -f /tmp/core ]; then
- mv /tmp/core ${DUMPDROP}/core.`hostname`-`date -Iseconds` &
- fi
- fi
- fi
- echo "Automatically restarting Asterisk."
- sleep 4
- done
- }
- run_asterisk &
|