diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2011-12-24 05:29:13 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2011-12-24 05:29:13 +0000 |
commit | 75153746eb95b28a4955865ec9b5f01141ae0ddc (patch) | |
tree | 1b36822ad02511949a911c2c3ebfcb509b2a507d | |
parent | dd16d2508f8660cd55abe365ffc0a232c487100c (diff) | |
download | sitesummary-75153746eb95b28a4955865ec9b5f01141ae0ddc.tar.gz sitesummary-75153746eb95b28a4955865ec9b5f01141ae0ddc.tar.bz2 sitesummary-75153746eb95b28a4955865ec9b5f01141ae0ddc.tar.xz |
Fix typo in NRPE rule for check_swap, causing the warning level
to be ignored.
-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$ |