Viitor_sendmail/etc/init/smtp.conf
kueller 329482f248 PIDFILECHECK mit CheckPid eingebaut
git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_sendmail@6210 504e572c-2e33-0410-9681-be2bf7408885
2011-08-19 09:23:57 +00:00

17 lines
348 B
Plaintext

description "sendmail Daemon startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started ifup))
stop on runlevel [016]
console none
script
/sbin/CheckPid /var/run/sendmail.pid
if [ -f /etc/mail/sendmail.cf ]; then
/usr/sbin/sendmail -bD -q30m -om
fi
end script