diff options
Diffstat (limited to 'testing/calibre/calibre.initd')
-rw-r--r-- | testing/calibre/calibre.initd | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/testing/calibre/calibre.initd b/testing/calibre/calibre.initd deleted file mode 100644 index 25117ed375..0000000000 --- a/testing/calibre/calibre.initd +++ /dev/null @@ -1,17 +0,0 @@ -#!/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() { - ebegin "Stopping Calibre Server" - start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE - eend $? -} |