containers-opendkim/opendkim.sh

9 lines
112 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 ;;
*) /usr/sbin/opendkim ;;
esac