6 lines
118 B
Plaintext
6 lines
118 B
Plaintext
|
#!/bin/sh
|
||
|
PID=$(pgrep opendkim)
|
||
|
if [ -z $PID ]
|
||
|
then
|
||
|
exec /usr/sbin/opendkim -x /etc/mail/opendkim/opendkim.conf
|
||
|
fi
|