#!/usr/bin/openrc-run # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 depend() { need localmount } start() { ebegin "Starting mandos server" start-stop-daemon --start -b \ --make-pidfile \ --pidfile /run/mandos.pid \ --exec /usr/bin/mandos -- \ --configdir /etc/mandos eend $? } stop() { ebegin "Stopping mandos server" start-stop-daemon --stop \ --pidfile /run/mandos.pid \ --retry=TERM/20/KILL/5 eend $? }