diff options
author | Richard Leitner <me@g0hl1n.net> | 2013-05-30 00:05:17 +0200 |
---|---|---|
committer | Richard Leitner <me@g0hl1n.net> | 2013-05-30 00:05:17 +0200 |
commit | 9be408511cbf10e4e4b5750459bf2a6d2e23d89d (patch) | |
tree | d6703289961f5774c467eae51439db5c582b740a /plugins/check_apt.c | |
parent | 1fd504b6117af25d3baa0c1afc5dbf7fc3c66f2c (diff) | |
download | monitoring-plugins-9be408511cbf10e4e4b5750459bf2a6d2e23d89d.tar.gz |
check_apt now correctly exits when apt-get return != 0
This commit fixes an issue with check_apt where check_apt doesn't exit
with the appropriate return code when apt-get returned a non-zero value.
Diffstat (limited to 'plugins/check_apt.c')
-rw-r--r-- | plugins/check_apt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_apt.c b/plugins/check_apt.c index 7ec2d55a..0e95dc3d 100644 --- a/plugins/check_apt.c +++ b/plugins/check_apt.c @@ -112,8 +112,8 @@ int main (int argc, char **argv) { result = max_state(result, STATE_CRITICAL); } else if(packages_available > 0){ result = max_state(result, STATE_WARNING); - } else { - result = max_state(result, STATE_OK); + } else if(result > STATE_UNKNOWN){ + result = STATE_UNKNOWN; } printf(_("APT %s: %d packages available for %s (%d critical updates). %s%s%s%s\n"), |