#!/sbin/openrc-run # Copyright 2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 RUNDIR=/var/run/rmilter description="Another sendmail milter for different mail checks" name="Rmilter" pidfile=${RUNDIR}/${SVCNAME}.pid command="/usr/sbin/rmilter" command_args="-c /etc/rmilter/${SVCNAME}.conf" retry="30" depend() { need net } start_pre() { if [ ! -d "${RUNDIR}" ]; then checkpath -q -d -o rmilter:rmilter -m0750 "${RUNDIR}" || return 1 fi }