From 3eb1befcd88fe9c7c39a43e77ab108726f340f46 Mon Sep 17 00:00:00 2001 From: Michael Mason Date: Thu, 26 Feb 2009 22:31:58 +0000 Subject: extra/fetchmail Initial Commit --- extra/fetchmail/fetchmail.initrd | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 extra/fetchmail/fetchmail.initrd (limited to 'extra/fetchmail/fetchmail.initrd') diff --git a/extra/fetchmail/fetchmail.initrd b/extra/fetchmail/fetchmail.initrd new file mode 100755 index 0000000000..30eea50369 --- /dev/null +++ b/extra/fetchmail/fetchmail.initrd @@ -0,0 +1,30 @@ +#!/sbin/runscript + +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 --exec /usr/bin/fetchmail \ + --chuid ${USER:-fetchmail}:${GROUP:-fetchmail} \ + -- -d ${polling_period} -f /etc/fetchmailrc + eend ${?} +} + +stop() { + ebegin "Stopping fetchmail" + start-stop-daemon --stop --quiet --pidfile /var/run/fetchmail.pid + eend ${?} +} + -- cgit v1.2.3