From 197ff6c25b79442e0f813ab36a8437a3f8335c48 Mon Sep 17 00:00:00 2001 From: ndarshan Date: Mon, 7 Apr 2014 11:04:47 +0530 Subject: Server-addons: Fix for issue in cluster utilization help option. This patch fixes the issue with -h(help) option for the cluster utilization plugin. Change-Id: Ide120c741d668188e2e270a509c20e9e109f11b9 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1082834 Signed-off-by: ndarshan --- plugins/check_cluster_vol_usage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/check_cluster_vol_usage.py') diff --git a/plugins/check_cluster_vol_usage.py b/plugins/check_cluster_vol_usage.py index c079ef3..21439b0 100755 --- a/plugins/check_cluster_vol_usage.py +++ b/plugins/check_cluster_vol_usage.py @@ -66,13 +66,13 @@ if __name__ == "__main__": action='store', type=int, dest='warn', - help='Warning in %', + help='Warning in %%', default=70) parser.add_argument('-c', '--critical', action='store', type=int, dest='crit', - help='Critical threshold Warning in %', + help='Critical threshold Warning in %%', default=95) parser.add_argument('-hg', '--host-group', action='store', -- cgit