discard Python 2 ssl handling (#11078)

* discard Python 2 ssl handling

* add changelog frag

* Apply suggestion

Co-authored-by: Felix Fontein <felix@fontein.de>

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Alexei Znamensky
2025-11-11 09:12:17 +13:00
committed by GitHub
parent e8bdf46627
commit dcb580c41d
5 changed files with 10 additions and 41 deletions

View File

@@ -110,22 +110,10 @@ def main():
start = now()
ssl_context = None
if not validate_certs:
try:
ssl_context = ssl._create_unverified_context()
except AttributeError:
# Legacy Python that doesn't verify HTTPS certificates by default
pass
else:
# Handle target environment that doesn't support HTTPS verification
ssl._create_default_https_context = ssl._create_unverified_context
ssl_context = None if validate_certs or not use_ssl else ssl._create_unverified_context()
url = "{proto}://{host}:{port}/cobbler_api".format(**module.params)
if ssl_context:
conn = xmlrpc_client.ServerProxy(url, context=ssl_context)
else:
conn = xmlrpc_client.Server(url)
conn = xmlrpc_client.ServerProxy(url, context=ssl_context)
try:
token = conn.login(username, password)

View File

@@ -232,22 +232,10 @@ def main():
start = now()
ssl_context = None
if not validate_certs:
try:
ssl_context = ssl._create_unverified_context()
except AttributeError:
# Legacy Python that doesn't verify HTTPS certificates by default
pass
else:
# Handle target environment that doesn't support HTTPS verification
ssl._create_default_https_context = ssl._create_unverified_context
ssl_context = None if validate_certs or not use_ssl else ssl._create_unverified_context()
url = "{proto}://{host}:{port}/cobbler_api".format(**module.params)
if ssl_context:
conn = xmlrpc_client.ServerProxy(url, context=ssl_context)
else:
conn = xmlrpc_client.Server(url)
conn = xmlrpc_client.ServerProxy(url, context=ssl_context)
try:
token = conn.login(username, password)

View File

@@ -160,13 +160,8 @@ def get_jenkins_connection(module):
token = module.params.get("token")
validate_certs = module.params.get("validate_certs")
if not validate_certs and hasattr(ssl, "SSLContext"):
if not validate_certs:
ssl._create_default_https_context = ssl._create_unverified_context
if validate_certs and not hasattr(ssl, "SSLContext"):
module.fail_json(
msg="Module does not support changing verification mode with python < 2.7.9."
" Either update Python or use validate_certs=false."
)
if username and (password or token):
return jenkins.Jenkins(url, username, password or token)