X-Git-Url: http://git.asterisk.org/gitweb/?p=asterisk%2Fasterisk.git;a=blobdiff_plain;f=contrib%2Finit.d%2Frc.debian.asterisk;h=16e7706fd6dc00c774cb211607a02b5d54d7c9c4;hp=168197d561a31b694f29d678cee262b49e6f5fff;hb=730d68976ee84b6d819129e2918b1704b65967fa;hpb=0905b587cf0612a78198e36a336e7bbc2a9c797f diff --git a/contrib/init.d/rc.debian.asterisk b/contrib/init.d/rc.debian.asterisk index 168197d..16e7706 100755 --- a/contrib/init.d/rc.debian.asterisk +++ b/contrib/init.d/rc.debian.asterisk @@ -1,8 +1,13 @@ #! /bin/sh -# $Id: asterisk,v 1.2 2004/07/18 20:24:07 Gregory Boehnlein +# $Id: asterisk,v 1.3 2005/11/17 22:30:01 Gregory Boehnlein # # asterisk start the asterisk PBX # +# Thu Nov 17 2005 Gregory Boehnlein +# - Updated Version to 1.3 +# - Reversed behavior of LD_ASSUME_KERNEL=2.4.1 +# - Added detailed failure messages +# # Sun Jul 18 2004 Gregory Boehnlein # - Updated Version to 1.2 # - Added test for safe_asterisk @@ -19,8 +24,8 @@ DAEMON=/usr/sbin/asterisk # Full path to safe_asterisk script SAFE_ASTERISK=/usr/sbin/safe_asterisk -# Leave this set unless you know what you are doing. -export LD_ASSUME_KERNEL=2.4.1 +# 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 @@ -30,7 +35,15 @@ export LD_ASSUME_KERNEL=2.4.1 #AST_USER="asterisk" #AST_GROUP="asterisk" -test -x $DAEMON || exit 0 +if ! [ -x $DAEMON ] ; then + echo "ERROR: /usr/sbin/asterisk not found" + exit 0 +fi + +if ! [ -d /etc/asterisk ] ; then + echo "ERROR: /etc/asterisk directory not found" + exit 0 +fi set -e