mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 16:01:55 +00:00
Sort imports with ruff check --fix (#11400)
Sort imports with ruff check --fix.
(cherry picked from commit 236b9c0e04)
Co-authored-by: Felix Fontein <felix@fontein.de>
29 lines
983 B
Python
29 lines
983 B
Python
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
import ssl
|
|
import sys
|
|
|
|
root_dir = sys.argv[1]
|
|
port = int(sys.argv[2])
|
|
|
|
from http.server import HTTPServer, SimpleHTTPRequestHandler
|
|
|
|
httpd = HTTPServer(("localhost", port), SimpleHTTPRequestHandler)
|
|
try:
|
|
httpd.socket = ssl.wrap_socket( # type: ignore[attr-defined]
|
|
httpd.socket,
|
|
server_side=True,
|
|
certfile=os.path.join(root_dir, "cert.pem"),
|
|
keyfile=os.path.join(root_dir, "key.pem"),
|
|
)
|
|
except AttributeError:
|
|
# Python 3.12 or newer:
|
|
context = ssl.create_default_context(purpose=ssl.Purpose.CLIENT_AUTH)
|
|
context.load_cert_chain(certfile=os.path.join(root_dir, "cert.pem"), keyfile=os.path.join(root_dir, "key.pem"))
|
|
httpd.socket = context.wrap_socket(httpd.socket)
|
|
httpd.handle_request()
|