blob: 868b8524c526d63632cd81b05147ae92b42dbaf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#! /bin/sh
#
# Service Location Protocol daemon
#
# PROVIDE: slpd
# REQUIRE: DAEMON
if [ -e /etc/rc.subr ]
then
. /etc/rc.subr
fi
name="slpd"
rcvar=${name}
command="@PREFIX@/sbin/${name}"
pidfile="/var/run/${name}.pid"
required_files="/etc/slp.conf"
if [ -e /etc/rc.subr ]
then
load_rc_config $name
run_rc_command "$1"
else
@ECHO@ -n " ${name}"
${command} ${slpd_flags} ${command_args}
fi
|