summaryrefslogtreecommitdiff
path: root/databases/keydb/files/keydb_sentinel.in
blob: b2b88e779834e706936bcff5a9abb81b61f92067 (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
#!/bin/sh

# PROVIDE: keydb_sentinel
# REQUIRE: LOGIN
# BEFORE:  securelevel
# KEYWORD: shutdown

# Add the following line to /etc/rc.conf to enable `sentinel':
#
#keydb_sentinel_enable="YES"
#

. /etc/rc.subr

name="keydb_sentinel"
rcvar="${name}_enable"

command="/usr/local/bin/keydb-sentinel"
pidfile="/var/run/keydb/$name.pid"

# read configuration and set defaults
load_rc_config "$name"
: ${keydb_sentinel_enable="NO"}
: ${keydb_sentinel_user="keydb"}
: ${keydb_sentinel_config="/usr/local/etc/$name.conf"}

command_args="${keydb_sentinel_config} --daemonize yes --pidfile ${pidfile}"
required_files="${keydb_sentinel_config}"
start_precmd="${name}_checks"
restart_precmd="${name}_checks"

keydb_sentinel_checks()
{
    if [ x`id -u ${keydb_sentinel_user}` != x`stat -f %u ${keydb_sentinel_config}` ]; then
	err 1 "${keydb_sentinel_config} must be owned by user ${keydb_sentinel_user}"
    fi
}

run_rc_command "$1"