check_deep_fs: a bit of more help

This commit is contained in:
ranl 2013-12-31 12:25:01 +02:00
parent 8f43feb97e
commit 2bc071f444
1 changed files with 2 additions and 2 deletions

View File

@ -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: