From 9be408511cbf10e4e4b5750459bf2a6d2e23d89d Mon Sep 17 00:00:00 2001 From: Richard Leitner Date: Thu, 30 May 2013 00:05:17 +0200 Subject: 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. diff --git a/plugins/check_apt.c b/plugins/check_apt.c index 7ec2d55..0e95dc3 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"), -- cgit v0.10-9-g596f