diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | nagios-nrpe-commands.cfg | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 5e5f00e..e47d6e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ sitesummary (0.0.74~test0) UNRELEASED; urgency=low - Report missing ldapsearch tool from check_ldap_root. - Rewrite code to recognise a remote Nagios client to use host ID to allow a Nagios server to be another Nagios servers client. + - Fix typo in NRPE rule for check_swap, causing the warning level + to be ignored. * Collect /etc/lsb-release if present to have more detailed version information on Ubuntu. * Add suggests from sitesummary on ldap-utils and cups-client for diff --git a/nagios-nrpe-commands.cfg b/nagios-nrpe-commands.cfg index 11e5ccf..4bbbeda 100644 --- a/nagios-nrpe-commands.cfg +++ b/nagios-nrpe-commands.cfg @@ -16,4 +16,4 @@ command[check_procs_cron]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2 command[check_procs_zombie]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -s Z command[check_shutdown]=/usr/lib/sitesummary/nagios-plugins/check_shutdown command[check_smtp]=/usr/lib/nagios/plugins/check_smtp -H localhost -command[check_swap]=/usr/lib/nagios/plugins/check_swap -w $ARG1 -c $ARG2$ +command[check_swap]=/usr/lib/nagios/plugins/check_swap -w $ARG1$ -c $ARG2$ |