add a -T option for setting ssh timeout in seconds

pull/3/head
Christopher Johnston 12 years ago
parent 2773234c3f
commit d15172abdc

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

@ -117,7 +117,7 @@ class Runner(object):
try:
# try paramiko
ssh.connect(host, username=self.remote_user, allow_agent=True,
look_for_keys=True, password=self.remote_pass)
look_for_keys=True, password=self.remote_pass timeout=self.timeout)
return [ True, ssh ]
except Exception, e:
# it failed somehow, return the failure string

Loading…
Cancel
Save