Browse Source

usermgr: fix connect/bind

main
Dustin Frisch 4 months ago
parent
commit
1f0a5573df
No known key found for this signature in database GPG Key ID: B4C3BF012D9B26BE
  1. 2
      packages/usermgr/usermgr.py

2
packages/usermgr/usermgr.py

@ -12,7 +12,7 @@ def cli(ctx, server, username, password):
tls = Tls(validate=ssl.CERT_REQUIRED,
version=ssl.PROTOCOL_TLSv1_2,
ciphers="AES256-GCM-SHA384")
server = Server(server, tls=tls, get_info="ALL")
server = Server(server, tls=tls, get_info="ALL", use_ssl=True)
ctx.obj = Connection(server,
username,
password,

Loading…
Cancel
Save