8eff38c7e2
Obtained from: maintainer
23 lines
306 B
Bash
23 lines
306 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: assp
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=assp
|
|
rcvar=`set_rcvar`
|
|
|
|
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"
|