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/sigh/files/sigh.initd

23 lines
485 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
PIDDIR="/run/${SVCNAME}"
description="Sigh is a milter that signs emails with S/MIME"
name="S/MIME signing milter"
pidfile="${PIDDIR}/${SVCNAME}.pid"
command="/usr/sbin/sigh"
command_args="-p ${pidfile} ${OPTIONS}"
retry="30"
depend() {
need localmount net
use mta logger
}
start_pre() {
checkpath -q -d -o sigh:sigh -m 0755 "${PIDDIR}" || return 1
}