add a -T option for setting ssh timeout in seconds

This commit is contained in:
Christopher Johnston 2012-03-01 16:54:17 -08:00
commit d15172abdc
2 changed files with 4 additions and 1 deletions

View file

@ -59,6 +59,8 @@ class Cli(object):
help="try to print output on one line")
parser.add_option('-t', '--tree', dest='tree', default=None,
help="if specified, a directory name to save output to, one file per host")
parser.add_option('-T', '--timeout', default=C.DEFAULT_TIMEOUT, type='int',
dest='timeout', help="set the timeout in seconds for ssh")
options, args = parser.parse_args()
@ -82,6 +84,7 @@ class Cli(object):
remote_user=options.remote_user,
remote_pass=sshpass,
host_list=options.host_list,
timeout=options.timeout,
forks=options.forks,
pattern=options.pattern,
verbose=True,