blob: 29d1ebee6ca2fc6065a56ecb01685a7cc360f883 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
#
# PROVIDE: daedalus
# REQUIRE: DAEMON
#
# Add the following line to /etc/rc.conf to enable daedalus:
# daedalus_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable daedalus
# daedalus_flags (str): Set to "-c %%PREFIX%%/etc/daedalus/daedalus.xml -t %%PREFIX%%/etc/daedalus/templates.xml" by default.
# Extra flags passed to start command
#
. %%RC_SUBR%%
name="daedalus"
rcvar=`set_rcvar`
command="%%PREFIX%%/bin/daedalus.rb"
pidfile="/var/run/daedalus.pid"
command_interpreter="%%RUBY_WITHOUT_SUFFIX%%"
required_files=%%PREFIX%%/etc/daedalus/daedalus.xml
[ -z "$daedalus_enable" ] && daedalus_enable="NO"
[ -z "$daedalus_flags" ] && daedalus_flags="-c %%PREFIX%%/etc/daedalus/daedalus.xml -t %%PREFIX%%/etc/daedalus/templates.xml"
load_rc_config $name
extra_commands="reload"
run_rc_command "$1"
|