blob: 53e72f481e68d940d991b461776dc08547fc58f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# 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"
|