blob: 7bd77f218366bf526be2d1ab6f6f963a2b2b81fe (
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
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: umurmur
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# umurmur_enable (bool): Set to NO by default.
# Set it to YES to enable umurmur.
# umurmur_user (str): Set to "umurmur" by default.
# Set to change user account.
# umurmur_flags (str): Set to "" by default.
# Extra flags passed to start command.
#
. /etc/rc.subr
name=umurmur
rcvar=umurmur_enable
# pidfile
pidfile="/var/run/umurmur/umurmur.pid"
command="%%PREFIX%%/bin/umurmurd"
command_args="-p ${pidfile}"
load_rc_config $name
# Set some defaults
: ${umurmur_enable="NO"}
: ${umurmur_user="umurmur"}
run_rc_command "$1"
|