openbsd-ports/net/mrtg/pkg/mrtg.rc
sthen 91faa22c52 Where a program with an rc script _requires_ a certain command line
parameter to daemonize, move the parameter from daemon to daemon_flags,
so that the user cannot inadvertently prevent it from daemonizing by
adjusting the flags.

Discussed with ajacoutot and schwarze, this method was suggested
by schwarze@ as a simpler alternative to my diff. ok aja@
2011-12-17 22:01:12 +00:00

13 lines
340 B
Bash

#!/bin/sh
#
# $OpenBSD: mrtg.rc,v 1.5 2011/12/17 22:01:13 sthen Exp $
daemon="${TRUEPREFIX}/bin/mrtg --daemon"
daemon_flags="--user _mrtg --group _mrtg --confcache-file /tmp/mrtg.ok --lock-file /tmp/mrtg_lock --pid-file /var/run/mrtg.pid"
. /etc/rc.d/rc.subr
pexp="/usr/bin/perl -w ${daemon}${daemon_flags:+ ${daemon_flags}}"
rc_cmd $1