blob: e0cc70b39dfc35af2937676de846b386f07da568 (
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
|
#!/bin/sh
# PROVIDE: murmur
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# murmur_enable (bool): Set to NO by default.
# Set it to YES to enable murmur.
# murmur_flags (str): Set to "" by default.
# Extra flags passed to start command.
#
. /etc/rc.subr
name=murmur
rcvar=murmur_enable
load_rc_config $name
# Set some defaults
: ${murmur_enable:=NO}
: ${murmur_user=%%USERS%%}
command="%%PREFIX%%/sbin/murmurd"
command_args="-ini %%PREFIX%%/etc/murmur.ini"
pidfile=/var/run/murmur/murmur.pid
extra_commands="reload"
sig_reload="USR1"
run_rc_command "$1"
|