blob: e6ff435d16ece6ddb25af9a1c69de27e7d227601 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
# PROVIDE: beehive
# REQUIRE: DAEMON NETWORKING
# KEYWORD: shutdown
#
# beehive_enable (bool): Set to NO by default.
# Set it to YES to enable beehive.
#
# beehive_bind (string): Set to localhost:8181 by default.
# Which address to bind Beehive's API &
# admin interface to.
#
# beehive_url (string): Set to http://localhost:8181 by default.
# Canonical URL for the API & admin interface.
#
# beehive_config (path): Set to %%PREFIX%%/etc/beehive.conf by default.
# Config-file to use.
. /etc/rc.subr
name="beehive"
rcvar="${name}_enable"
load_rc_config $name
: ${beehive_enable:="NO"}
: ${beehive_bind:="localhost:8181"}
: ${beehive_url:="http://localhost:8181"}
: ${beehive_config:="%%ETCDIR%%/${name}.conf"}
: ${beehive_user:="%%USERS%%"}
: ${beehive_group:="%%GROUPS%%"}
pidfiledir="/var/run/${name}"
pidfile="${pidfiledir}/${name}.pid"
procname="%%PREFIX%%/bin/${name}"
command="/usr/sbin/daemon"
command_args="-f -p ${pidfile} ${procname} -bind ${beehive_bind} -canonicalurl ${beehive_url} -config ${beehive_config}"
start_precmd="${name}_prestart"
beehive_prestart()
{
if [ ! -d ${pidfiledir} ]; then
install -d -o ${beehive_user} -g ${beehive_group} ${pidfiledir}
fi
if [ ! -d %%ETCDIR%% ]; then
install -d -o ${beehive_user} -g ${beehive_group} %%ETCDIR%%
fi
}
run_rc_command "$1"
|