
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja> git-svn-id: file:///srv/svn/repo/mai/trunk@66 e410bdd4-646f-c54f-a7ce-fffcc4f439ae
27 lines
445 B
Bash
27 lines
445 B
Bash
#!/bin/sh
|
|
# $TheSupernovaDuo$
|
|
#
|
|
# PROVIDE: mai
|
|
# REQUIRE: NETWORKING DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="mai"
|
|
rcvar=$name
|
|
command="/usr/pkg/bin/mai"
|
|
command_args="-f /usr/pkg/etc/mai/mai.ini"
|
|
pidfile="/var/run/${name}.pid"
|
|
start_cmd="mai_start"
|
|
|
|
required_files="/usr/pkg/etc/mai/mai.ini"
|
|
|
|
mai_start() {
|
|
$command $command_args
|
|
pgrep -n $name > $pidfile
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|