summaryrefslogtreecommitdiffstats
path: root/extra/fetchmail/fetchmail.initd
diff options
context:
space:
mode:
Diffstat (limited to 'extra/fetchmail/fetchmail.initd')
-rwxr-xr-xextra/fetchmail/fetchmail.initd33
1 files changed, 0 insertions, 33 deletions
diff --git a/extra/fetchmail/fetchmail.initd b/extra/fetchmail/fetchmail.initd
deleted file mode 100755
index a1ed1ec8..00000000
--- a/extra/fetchmail/fetchmail.initd
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/sbin/runscript
-
-pidfile=/var/run/fetchmail/fetchmail.pid
-
-depend() {
- need net
- use mta
-}
-
-checkconfig() {
- if [ ! -f /etc/fetchmailrc ]; then
- eerror "Configuration file /etc/fetchmailrc not found"
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
-
- ebegin "Starting fetchmail"
- start-stop-daemon --start --quiet \
- --chuid fetchmail --exec /usr/bin/fetchmail \
- -- -d ${polling_period:-300} -f /etc/fetchmailrc \
- --pidfile ${pidfile} -i /var/lib/fetchmail/.fetchids
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping fetchmail"
- start-stop-daemon --stop --quiet --pidfile ${pidfile}
- eend ${?}
-}
-