This commit is contained in:
Páll Guðjón Sigurðsson 2010-09-03 00:03:53 +00:00
parent 268169c9d4
commit b05e02a6c4
1 changed files with 6 additions and 2 deletions

View File

@ -187,8 +187,12 @@ def check_controllers():
cache_status = check(i, 'Cache Status' )
status = max(status, cache_status)
controller_serial = i['Serial Number']
cache_serial = i['Cache Serial Number']
controller_serial = 'n/a'
cache_serial = 'n/a'
if i.has_key('Serial Number'):
controller_serial = i['Serial Number')
if i.has_key('Cache Serial Number'):
cache_serial = i['Cache Serial Number']
add_long ( "%s" % (i['name']) )
add_long( "- Controller Status: %s (sn: %s)" % ( state[controller_status], controller_serial ) )
add_long( "- Cache Status: %s (sn: %s)" % ( state[cache_status], cache_serial ) )