Merge pull request #1893 from aogier/ssh-fix

fix ssh server
This commit is contained in:
Griatch 2019-08-21 22:36:32 +02:00 committed by GitHub
commit 734f3beb33

View file

@ -490,8 +490,8 @@ def makeFactory(configdict):
try: try:
# create/get RSA keypair # create/get RSA keypair
publicKey, privateKey = getKeyPair(_PUBLIC_KEY_FILE, _PRIVATE_KEY_FILE) publicKey, privateKey = getKeyPair(_PUBLIC_KEY_FILE, _PRIVATE_KEY_FILE)
factory.publicKeys = {'ssh-rsa': publicKey} factory.publicKeys = {b'ssh-rsa': publicKey}
factory.privateKeys = {'ssh-rsa': privateKey} factory.privateKeys = {b'ssh-rsa': privateKey}
except Exception as err: except Exception as err:
print(_NO_AUTOGEN.format(err=err)) print(_NO_AUTOGEN.format(err=err))