diff options
Diffstat (limited to 'unmaintained/dbmail/dbmail-httpd.initd')
-rw-r--r-- | unmaintained/dbmail/dbmail-httpd.initd | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/unmaintained/dbmail/dbmail-httpd.initd b/unmaintained/dbmail/dbmail-httpd.initd new file mode 100644 index 0000000000..5262175c23 --- /dev/null +++ b/unmaintained/dbmail/dbmail-httpd.initd @@ -0,0 +1,39 @@ +#!/sbin/openrc-run +# + +PIDFILE="/var/run/dbmail/httpd.pid" + +depend() { + need net + use mysql + use pgsql + after mta +} + +checkconfig() { + if [ ! -e "/etc/dbmail.conf" ]; then + eerror "You need to create apropriate config" + eerror "/etc/dbmail.conf" + return 1 + fi + # Avoid using root's TMPDIR + unset TMPDIR +} + +start() { + checkconfig && \ + ebegin "Starting DBMail HTTP daemon" + start-stop-daemon --start --quiet \ + --exec /usr/sbin/dbmail-httpd \ + --name dbmail-httpd \ + -- -p ${PIDFILE} -f /etc/dbmail.conf 2>&1 + eend $? +} + +stop() { + ebegin "Stopping DBMail HTTP daemon" + start-stop-daemon --stop --quiet --retry 5 \ + --pidfile ${PIDFILE} + eend $? +} + |