blob: 5179ae2b4d4f7207af835078e2aff0bf782589be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: lisa
# REQUIRE: LOGIN
lisa_enable="NO"
lisa_conffile="%%PREFIX%%/etc/lisarc"
. /etc/rc.subr
name="lisa"
rcvar=`set_rcvar`
command="%%PREFIX%%/bin/lisa"
command_args="-q -c ${lisa_conffile}"
required_files="${lisa_conffile}"
load_rc_config $name
run_rc_command "$1"
|