You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mail-filter/rmilter/files/rmilter.initd

28 lines
588 B

#!/sbin/openrc-run
# Copyright 2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
RUNDIR=/var/run/rmilter
PIDFILE=$RUNDIR/rmilter.pid
depend() {
need net
}
start() {
ebegin "Starting ${SVCNAME}"
mkdir -m0750 -p $RUNDIR
chown rmilter:rmilter $RUNDIR
chmod g+s $RUNDIR
rm -f $RUNDIR/$SVCNAME.sock
start-stop-daemon --start --quiet --pidfile $PIDFILE -u rmilter \
--exec /usr/sbin/rmilter -- -c /etc/rmilter/rmilter.conf
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --quiet --pidfile $PIDFILE
eend $?
}