55 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			882 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
########################################################################
 | 
						|
# Begin scriptname
 | 
						|
#
 | 
						|
# Description :
 | 
						|
#
 | 
						|
# Authors     :
 | 
						|
#
 | 
						|
# Version     : LFS x.x
 | 
						|
#
 | 
						|
# Notes       :
 | 
						|
#
 | 
						|
########################################################################
 | 
						|
 | 
						|
### BEGIN INIT INFO
 | 
						|
# Provides:            template
 | 
						|
# Required-Start:
 | 
						|
# Should-Start:
 | 
						|
# Required-Stop:
 | 
						|
# Should-Stop:
 | 
						|
# Default-Start:
 | 
						|
# Default-Stop:
 | 
						|
# Short-Description:
 | 
						|
# Description:
 | 
						|
# X-LFS-Provided-By:
 | 
						|
### END INIT INFO
 | 
						|
 | 
						|
. /lib/lsb/init-functions
 | 
						|
 | 
						|
case "${1}" in
 | 
						|
   start)
 | 
						|
      log_info_msg "Starting..."
 | 
						|
      start_daemon fully_qualified_path
 | 
						|
      ;;
 | 
						|
 | 
						|
   stop)
 | 
						|
      log_info_msg "Stopping..."
 | 
						|
      killproc fully_qualified_path
 | 
						|
      ;;
 | 
						|
 | 
						|
   restart)
 | 
						|
      ${0} stop
 | 
						|
      sleep 1
 | 
						|
      ${0} start
 | 
						|
      ;;
 | 
						|
 | 
						|
   *)
 | 
						|
      echo "Usage: ${0} {start|stop|restart}"
 | 
						|
      exit 1
 | 
						|
      ;;
 | 
						|
esac
 | 
						|
 | 
						|
exit 0
 | 
						|
 | 
						|
# End scriptname
 |