From 2bc071f444958c5d70d0fb8932afc828f3e3e74d Mon Sep 17 00:00:00 2001 From: ranl Date: Tue, 31 Dec 2013 12:25:01 +0200 Subject: [PATCH] check_deep_fs: a bit of more help --- nagios/check_deep_fs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nagios/check_deep_fs.py b/nagios/check_deep_fs.py index 6682a65..7ec4906 100644 --- a/nagios/check_deep_fs.py +++ b/nagios/check_deep_fs.py @@ -12,8 +12,8 @@ import os.path def parse_args(): parser = OptionParser() parser.add_option('-p', '--path', dest='path', type='string', help='absolute path to check', metavar="FILE") - parser.add_option('-w', '--warning', dest='warning', type='int', help='critical threshold') - parser.add_option('-c', '--critical', dest='critical', type='int', help='warning threshold') + parser.add_option('-w', '--warning', dest='warning', type='int', help='free disk space critical threshold (in %)') + parser.add_option('-c', '--critical', dest='critical', type='int', help='free disk space warning threshold (in %)') (opts, args) = parser.parse_args() if opts.path is None: