mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r7285 | tilghman | 2005-12-02 15:12:05 -0600 (Fri, 02 Dec 2005) | 2 lines Turn on executable bits for startup scripts, and fix bash var interpolation for Mandrake ........ r7299 | oej | 2005-12-02 19:24:40 -0600 (Fri, 02 Dec 2005) | 2 lines Documenting the default registerattempts setting as 0, continue hammering the server for ever and ever ;-) ........ r7310 | tilghman | 2005-12-03 13:55:05 -0600 (Sat, 03 Dec 2005) | 3 lines Bug 5925: check for "Unknown", as that's what app_voicemail puts into the field for Unknown callerid Also, remove useless res checks (initialized to 0; never set) ........ r7329 | kpfleming | 2005-12-04 12:03:07 -0600 (Sun, 04 Dec 2005) | 2 lines use a more efficient way to get the revision number, that will also report if the working copy contains uncommitted modifications ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7330 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			43 lines
		
	
	
		
			684 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			684 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| #
 | |
| # Start/stop/restart Asterisk PBX
 | |
| #
 | |
| # Version: 1.0 - Paul Belanger <pabelanger@gmail.com>
 | |
| #
 | |
| # 03.29.2005 - Initial Version
 | |
| #
 | |
| 
 | |
| asterisk_start() {
 | |
|    if [ -x /usr/sbin/asterisk ]; then
 | |
|       echo "Starting Asterisk   /usr/sbin/asterisk"
 | |
|       /usr/sbin/asterisk
 | |
|    fi
 | |
| }
 | |
| 
 | |
| asterisk_stop() {
 | |
|     # If there is no PID file, ignore this request...
 | |
|     if [ -r /var/run/asterisk.pid ]; then
 | |
|       killall asterisk
 | |
|     fi
 | |
| }
 | |
| 
 | |
| asterisk_restart() {
 | |
|    asterisk_stop
 | |
|    asterisk_start
 | |
| }
 | |
| 
 | |
| case "$1" in
 | |
|    'start')
 | |
|       asterisk_start
 | |
|       ;;
 | |
|    'stop')
 | |
|       asterisk_stop
 | |
|       ;;
 | |
|    'restart')
 | |
|       asterisk_restart
 | |
|       ;;
 | |
|    *)
 | |
|       echo "usage $0 start|stop|restart" ;;
 | |
| esac
 | |
| 
 |