aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/nagios/files/nagios.in
blob: e1afec9ced54be737394c470304d9040597b0ff3 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: nagios
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown

#
# Add the following lines to /etc/rc.conf to enable nagios:
# nagios_enable (bool):    Set to "NO" by default.
#                          Set it to "YES" to enable nagios.
# nagios_flags (str):      Set to "" by default.
# nagios_configfile (str): Set to "%%PREFIX%%/etc/nagios/nagios.cfg" by default.
#

. %%RC_SUBR%%

name="nagios"
rcvar=`set_rcvar`

command="%%PREFIX%%/bin/nagios"
command_args="-d"
extra_commands="reload"
pidfile="%%NAGIOSDIR%%/nagios.lock"
nagios_user="%%NAGIOSUSER%%"

start_precmd="start_precmd"
stop_postcmd="stop_postcmd"
restart_precmd="nagios_checkconfig"
reload_precmd="nagios_checkconfig"
sig_reload=HUP

[ -z "${nagios_enable}" ]       && nagios_enable="NO"
[ -z "${nagios_flags}" ]        && nagios_flags=""
[ -z "${nagios_configfile}" ]   && nagios_configfile="%%PREFIX%%/etc/nagios/nagios.cfg"

load_rc_config "${name}"

required_files="${nagios_configfile}"
command_args="${command_args} ${nagios_configfile}"

nagios_checkconfig() {
  echo -n "Performing sanity check of nagios configuration: "
  ${command} -v ${nagios_configfile} 2>&1 >/dev/null
  if [ $? != 0 ]; then
    echo "FAILED"
    ${command} -v ${nagios_configfile}
    return 1
  else
    echo "OK"
  fi
}

start_precmd() {
  if ! nagios_checkconfig; then
    return 1
  fi

  su -m "${nagios_user}" -c "touch \"%%NAGIOSDIR%%/nagios.log\" \"%%NAGIOSDIR%%/status.sav\""
  rm -f "%%NAGIOSDIR%%/rw/nagios.cmd"
}

stop_postcmd() {
  rm -f "%%NAGIOSDIR%%/nagios.tmp" "%%NAGIOSDIR%%/rw/nagios.cmd"
}

run_rc_command "$1"