blob: 0105b5ccff9467463e9eb492431e32c8eef19c96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: assp
# REQUIRE: LOGIN
# KEYWORD: shutdown
. /etc/rc.subr
name=assp
rcvar=assp_enable
command=%%PREFIX%%/sbin/assp
command_interpreter=%%PERL%%
pidfile=%%ASSP_HOME%%/pid
load_rc_config $name
: ${assp_enable="NO"}
: ${assp_flags="%%ASSP_HOME%%"}
run_rc_command "$1"
|