Commit 24d854e0 by Michael DeHaan

Merge pull request #63 from chjohnst/master

add -T option for ssh timeout
parents a191af6a d15172ab
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment