1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-21 11:19:00 +00:00

[PR #11119/41923e43 backport][stable-12] fix ruff case SIM103 (#11132)

fix ruff case SIM103 (#11119)

* fix ruff case SIM103

* add changelog frag

(cherry picked from commit 41923e43bd)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2025-11-12 21:32:10 +01:00 committed by GitHub
parent ac6c6df2c7
commit 93d23cfef6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 115 additions and 230 deletions

View file

@ -208,10 +208,7 @@ def query_toplevel(module, name, world):
def query_package(module, name):
cmd = APK_PATH + ["-v", "info", "--installed", name]
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
if rc == 0:
return True
else:
return False
return rc == 0
def query_latest(module, name):
@ -219,18 +216,14 @@ def query_latest(module, name):
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
search_pattern = rf"({re.escape(name)})-[\d\.\w]+-[\d\w]+\s+(.)\s+[\d\.\w]+-[\d\w]+\s+"
match = re.search(search_pattern, stdout)
if match and match.group(2) == "<":
return False
return True
return not (match and match.group(2) == "<")
def query_virtual(module, name):
cmd = APK_PATH + ["-v", "info", "--description", name]
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
search_pattern = rf"^{re.escape(name)}: virtual meta package"
if re.search(search_pattern, stdout):
return True
return False
return bool(re.search(search_pattern, stdout))
def get_dependencies(module, name):