52 lines
1.1 KiB
Bash
52 lines
1.1 KiB
Bash
#!/bin/sh -e
|
|
|
|
#### BEGIN INIT INFO
|
|
# Provides: lcdproc
|
|
# Required-Start: $syslog $local_fs $network $remote_fs
|
|
# Required-Stop: $syslog $local_fs $network $remote_fs
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: S 0 1 6
|
|
# Short-Description: LCDproc system status information viewer
|
|
# Description: Debian init script for lcdproc, the system
|
|
# status information viewer in the LCDproc suite
|
|
### END INIT INFO
|
|
|
|
# local variables
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
bindir=@bindir@
|
|
sbindir=@sbindir@
|
|
etc=@sysconfdir@
|
|
|
|
NAME=lcdproc
|
|
DAEMON=${bindir}/${NAME}
|
|
DESC="LCDproc system status monitor"
|
|
OPTIONS=""
|
|
|
|
# installation check
|
|
test -x ${DAEMON} || exit 0
|
|
|
|
case "$1" in
|
|
start)
|
|
printf "Starting ${DESC}: "
|
|
start-stop-daemon --start --quiet --exec ${DAEMON} -- ${OPTIONS}
|
|
printf "${NAME}."
|
|
;;
|
|
stop)
|
|
printf "Stopping ${DESC}: "
|
|
start-stop-daemon --stop --oknodo --quiet --exec ${DAEMON}
|
|
printf "${NAME}."
|
|
;;
|
|
restart|force-reload)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
*)
|
|
printf "Usage: $0 {start|stop|restart|force-reload}\n" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|