##// END OF EJS Templates
specify sshkey is *private*
MinRK -
Show More
@@ -171,7 +171,7 b' class Client(HasTraits):'
171 171 A string of the form passed to ssh, i.e. 'server.tld' or 'user@server.tld:port'
172 172 If keyfile or password is specified, and this is not, it will default to
173 173 the ip given in addr.
174 sshkey : str; path to public ssh key file
174 sshkey : str; path to ssh private key file
175 175 This specifies a key to be used in ssh login, default None.
176 176 Regular default ssh keys will be used without specifying this argument.
177 177 password : str
@@ -57,7 +57,7 b' class EngineFactory(RegistrationFactory):'
57 57 sshserver=Unicode(config=True,
58 58 help="""The SSH server to use for tunneling connections to the Controller.""")
59 59 sshkey=Unicode(config=True,
60 help="""The SSH keyfile to use when tunneling connections to the Controller.""")
60 help="""The SSH private key file to use when tunneling connections to the Controller.""")
61 61 paramiko=Bool(sys.platform == 'win32', config=True,
62 62 help="""Whether to use paramiko instead of openssh for tunnels.""")
63 63
General Comments 0
You need to be logged in to leave comments. Login now