forked from GNUsocial/gnu-social
6 lines
122 B
Bash
6 lines
122 B
Bash
#!/bin/sh
|
|
PID=$(pgrep opendkim)
|
|
if [ -z "${PID}" ]
|
|
then
|
|
exec /usr/sbin/opendkim -x /etc/mail/opendkim/opendkim.conf
|
|
fi |