freebsd-ports/net/openslp/files/slpd.in
Doug Barton 1d6b4b3f91 Begin the process of deprecating sysutils/rc_subr by
s#. %%RC_SUBR%%#. /etc/rc.subr#
2010-03-27 00:15:24 +00:00

26 lines
394 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: slpd
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable slpd:
#
# slpd_enable="YES"
#
slpd_enable=${slpd_enable-"NO"}
slpd_flags=${slpd_flags-"-p /var/run/slpd.pid"}
. /etc/rc.subr
name=slpd
rcvar=`set_rcvar`
command=%%PREFIX%%/sbin/slpd
pidfile="/var/run/${name}.pid"
load_rc_config ${name}
run_rc_command "$1"