diff options
| author | Carlo Lanmdeter <clandmeter@gmail> | 2009-03-05 14:48:30 +0000 |
|---|---|---|
| committer | Carlo Lanmdeter <clandmeter@gmail> | 2009-03-05 14:48:30 +0000 |
| commit | df930dbd9fb00c1c381229a2c5ce68d82eaa53eb (patch) | |
| tree | a90740e8ab2134ad00ecf6ae8b205ec9f7c4990f /extra/fetchmail/fetchmail.initrd | |
| parent | 87f8eb8ec3fad06f3d1ab02fc4aa36e4143c3baa (diff) | |
| parent | 739bdededdec7f411de9223fe440fc8141afe80b (diff) | |
| download | aports-df930dbd9fb00c1c381229a2c5ce68d82eaa53eb.tar.bz2 aports-df930dbd9fb00c1c381229a2c5ce68d82eaa53eb.tar.xz | |
Merge commit 'ncopa/master'
Diffstat (limited to 'extra/fetchmail/fetchmail.initrd')
| -rwxr-xr-x | extra/fetchmail/fetchmail.initrd | 30 |
1 files changed, 30 insertions, 0 deletions
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 ${?} +} + |
