diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-17 21:52:50 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-17 21:52:50 +0200 |
commit | 29b2dfab4f6294643623572feb91f0e0f802d654 (patch) | |
tree | 68f8202a374dad9ffbd8ff69cedcee31c7057808 /plugins | |
parent | 30bf8025d2ccb7c1fdcf4f69ed543cba4e753625 (diff) | |
download | monitoring-plugins-29b2dfab4f6294643623572feb91f0e0f802d654.tar.gz |
plugins/t/check_apt.t: Expect performance data
The check_apt plugin now emits performance data, fix the test(s)
accordingly.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/t/check_apt.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/t/check_apt.t b/plugins/t/check_apt.t index 71230979..9ba0ff8e 100644 --- a/plugins/t/check_apt.t +++ b/plugins/t/check_apt.t @@ -18,8 +18,8 @@ sub make_result_regexp { } else { $status = "CRITICAL"; } - return sprintf('/^APT %s: %d packages available for upgrade \(%d critical updates\).\s*$/', - $status, $warning, $critical); + return sprintf('/^APT %s: %d packages available for upgrade \(%d critical updates\)\. |available_upgrades=%d;;;0 critical_updates=%d;;;0$/', + $status, $warning, $critical, $warning, $critical); } if (-x "./check_apt") { |