containers-opendkim/opendkimd.sh

11 lines
161 B
Bash
Raw Normal View History

2019-09-27 20:18:41 +00:00
#!/bin/sh
pid=/tmp/opendkim.pid
case $1 in
stop) cat ${pid} | xargs kill ;;
2019-09-27 20:20:33 +00:00
*)
chown -R opendkim:opendkim /etc/opendkim
/usr/sbin/opendkim ;;
2019-09-27 20:18:41 +00:00
esac