mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 18:55:19 +00:00 
			
		
		
		
	Comment out LD_ASSUME_KERNEL by default.
Print error messages if asterisk executable or the asterisk configuration directory is not found. (issue #5785, #5708) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7241 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -1,8 +1,13 @@ | |||||||
| #! /bin/sh | #! /bin/sh | ||||||
| # $Id: asterisk,v 1.2 2004/07/18 20:24:07 Gregory Boehnlein <damin@nacs.net> | # $Id: asterisk,v 1.3 2005/11/17 22:30:01 Gregory Boehnlein <damin@nacs.net> | ||||||
| # | # | ||||||
| # asterisk	start the asterisk PBX | # asterisk	start the asterisk PBX | ||||||
| # | # | ||||||
|  | # Thu Nov 17 2005 Gregory Boehnlein <damin@nacs.net> | ||||||
|  | # - Updated Version to 1.3 | ||||||
|  | # - Reversed behavior of LD_ASSUME_KERNEL=2.4.1 | ||||||
|  | # - Added detailed failure messages | ||||||
|  | # | ||||||
| # Sun Jul 18 2004 Gregory Boehnlein <damin@nacs.net> | # Sun Jul 18 2004 Gregory Boehnlein <damin@nacs.net> | ||||||
| # - Updated Version to 1.2 | # - Updated Version to 1.2 | ||||||
| # - Added test for safe_asterisk | # - Added test for safe_asterisk | ||||||
| @@ -19,8 +24,8 @@ DAEMON=/usr/sbin/asterisk | |||||||
| # Full path to safe_asterisk script | # Full path to safe_asterisk script | ||||||
| SAFE_ASTERISK=/usr/sbin/safe_asterisk | SAFE_ASTERISK=/usr/sbin/safe_asterisk | ||||||
|  |  | ||||||
| # Leave this set unless you know what you are doing. | # Uncomment this ONLY if you know what you are doing. | ||||||
| export LD_ASSUME_KERNEL=2.4.1 | # export LD_ASSUME_KERNEL=2.4.1 | ||||||
|  |  | ||||||
| # Uncomment the following and set them to the user/groups that you | # Uncomment the following and set them to the user/groups that you | ||||||
| # want to run Asterisk as. NOTE: this requires substantial work to | # 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_USER="asterisk" | ||||||
| #AST_GROUP="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 | set -e | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| #!/bin/sh | #!/bin/sh | ||||||
| # $Id: asterisk,v 1.2 2004/07/18 20:24:07 Gregory Boehnlein <damin@nacs.net> | # $Id: asterisk,v 1.3 2005/11/17 22:30:01 Gregory Boehnlein <damin@nacs.net> | ||||||
| # | # | ||||||
| # asterisk    Starts, Stops and Reloads Asterisk. | # asterisk    Starts, Stops and Reloads Asterisk. | ||||||
| # | # | ||||||
| @@ -8,6 +8,11 @@ | |||||||
| # processname: asterisk | # processname: asterisk | ||||||
| # pidfile: /var/run/asterisk.pid | # pidfile: /var/run/asterisk.pid | ||||||
| # | # | ||||||
|  | # Thu Nov 17 2005 Gregory Boehnlein <damin@nacs.net> | ||||||
|  | # - Updated Version to 1.3 | ||||||
|  | # - Reversed behavior of LD_ASSUME_KERNEL=2.4.1 | ||||||
|  | # - Added detailed failure messages | ||||||
|  | # | ||||||
| # Sun Jul 18 2004 Gregory Boehnlein <damin@nacs.net> | # Sun Jul 18 2004 Gregory Boehnlein <damin@nacs.net> | ||||||
| # - Updated Version to 1.2 | # - Updated Version to 1.2 | ||||||
| # - Added test for safe_asterisk | # - Added test for safe_asterisk | ||||||
| @@ -18,11 +23,18 @@ | |||||||
| # Source function library. | # Source function library. | ||||||
| . /etc/rc.d/init.d/functions | . /etc/rc.d/init.d/functions | ||||||
|  |  | ||||||
| [ -x /usr/sbin/asterisk ] || exit 0 | if ! [ -x /usr/sbin/asterisk ] ; then | ||||||
| [ -d /etc/asterisk ] || exit 0 | 	echo "ERROR: /usr/sbin/asterisk not found" | ||||||
|  | 	exit 0 | ||||||
|  | fi | ||||||
|  |  | ||||||
| # Leave this set unless you know what you are doing. | if ! [ -d /etc/asterisk ] ; then | ||||||
| export LD_ASSUME_KERNEL=2.4.1 | 	echo "ERROR: /etc/asterisk directory not found" | ||||||
|  | 	exit 0 | ||||||
|  | fi | ||||||
|  |  | ||||||
|  | # Uncomment this ONLY if you know what you are doing. | ||||||
|  | # export LD_ASSUME_KERNEL=2.4.1 | ||||||
|  |  | ||||||
| # Full path to asterisk binary | # Full path to asterisk binary | ||||||
| DAEMON=/usr/sbin/asterisk | DAEMON=/usr/sbin/asterisk | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user