1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-08 21:18:00 +03:00

Merge remote-tracking branch 'origin/v3.6'

This commit is contained in:
Adolfo Gómez García 2023-05-17 14:34:23 +02:00
commit 33f90f74d8
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23
2 changed files with 4 additions and 4 deletions

View File

@ -195,7 +195,7 @@ class SimpleLDAPAuthenticator(auths.Authenticator):
typeName = _('SimpleLDAP (DEPRECATED)')
typeType = 'SimpleLdapAuthenticator'
typeDescription = _('Simple LDAP authenticator (DEPRECATED)')
typeDescription = _('Simple LDAP authenticator')
iconFile = 'auth.png'
# If it has and external source where to get "new" users (groups must be declared inside UDS)

View File

@ -253,9 +253,9 @@ class HTML5SSHTransport(transports.Transport):
# Add optional parameters (strings only)
for i in (
('username', self.username),
('password', self.password),
('private-key', self.sshPrivateKey),
('passphrase', self.sshPassphrase),
# ('password', self.password),
# ('private-key', self.sshPrivateKey),
# ('passphrase', self.sshPassphrase),
('command', self.sshCommand),
('host-key', self.sshHostKey),
):