mirror of https://github.com/fairyglade/ly.git
24 lines
328 B
Bash
24 lines
328 B
Bash
#!/bin/sh
|
|
#
|
|
# PROVIDE: ly
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=ly
|
|
rcvar=ly_enable
|
|
|
|
command="/usr/local/bin/ly"
|
|
|
|
load_rc_config $name
|
|
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
# SET THEM IN THE /etc/rc.conf FILE
|
|
#
|
|
ly_enable=${ly_enable-"NO"}
|
|
pidfile=${ly_pidfile-"/var/run/ly.pid"}
|
|
|
|
run_rc_command "$1"
|