forked from GNUsocial/gnu-social
6 lines
110 B
Bash
6 lines
110 B
Bash
#!/bin/sh
|
|
PID=$(pgrep master)
|
|
if [ -z "${PID}" ]
|
|
then
|
|
exec /usr/sbin/postfix start -c /etc/mail/postfix
|
|
fi |