6 lines
106 B
Plaintext
6 lines
106 B
Plaintext
|
#!/bin/sh
|
||
|
PID=$(pgrep master)
|
||
|
if [ -z $PID ]
|
||
|
then
|
||
|
exec /usr/sbin/postfix start -c /etc/mail/postfix
|
||
|
fi
|