| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | #!/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-functionscase "${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      ;;esacexit 0# End scriptname
 |