If there are no backups, we get a single NULL answer
authorPeter Palfrader <peter@palfrader.org>
Wed, 3 Apr 2013 09:50:08 +0000 (11:50 +0200)
committerPeter Palfrader <peter@palfrader.org>
Wed, 3 Apr 2013 09:50:08 +0000 (11:50 +0200)
dsa-nagios-checks/checks/dsa-check-bacula

index 35aade9..5f5e445 100755 (executable)
@@ -102,7 +102,7 @@ conn = psycopg2.connect(options.db)
 cursor = conn.cursor(cursor_factory=psycopg2.extras.DictCursor)
 cursor.execute(query, params)
 records = cursor.fetchall()
-if len(records) == 0:
+if len(records) == 0 or records[0][0] is None:
     print "CRITICAL: No backups of %s/%s."%(host, level)
     sys.exit(codes['CRITICAL'])
 elif len(records) > 1: