diff options
Diffstat (limited to 'testing/calibre/calibre.initd')
-rw-r--r-- | testing/calibre/calibre.initd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/calibre/calibre.initd b/testing/calibre/calibre.initd new file mode 100644 index 000000000..92986a9a7 --- /dev/null +++ b/testing/calibre/calibre.initd @@ -0,0 +1,16 @@ +#!/sbin/runscript + +depend() { + need net + after firewall +} +start() { + ebegin "Starting Calibre Server" + start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS + eend $? +} + +stop() { + start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE + rm -f $PIDFILE +} |