aboutsummaryrefslogtreecommitdiff
path: root/databases/webdis/files/webdis.in
blob: 1aba2553440f056f859e87a40bc9b3ddc20961e6 (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
#!/bin/sh

# PROVIDE: webdis
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# webdis_enable (bool):	Set to NO by default.
#			Set it to YES to enable webdis.
# webdis_config (path):	Set to %%PREFIX%%/etc/webdis.conf
#			by default.
# webdis_user (user):	Set to 'webdis'	by default.
# webdis_group (group):	Set to 'webdis'	by default.

. /etc/rc.subr

name=webdis
rcvar=webdis_enable

load_rc_config $name

: ${webdis_enable:=NO}
: ${webdis_config:=%%PREFIX%%/etc/webdis.conf}
: ${webdis_user:=webdis}
: ${webdis_group:=webdis}

start_precmd=webdis_start_precmd
pidfile="/var/run/${name}.pid"
procname="%%PREFIX%%/bin/${name}"
command=/usr/sbin/daemon
command_args="-f -c -p ${pidfile} ${procname} ${webdis_config}"

webdis_start_precmd()
{
    if [ ! -e ${pidfile} ]; then
        install -o ${webdis_user} -g ${webdis_group} /dev/null ${pidfile}
    fi
}

run_rc_command "$1"