mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-08 21:17:20 +00:00
[PR #11265/d4249071 backport][stable-12] apk: fix packages return value for apk-tools >= 3 (fix #11264) (#11272)
apk: fix packages return value for apk-tools >= 3 (fix #11264) (#11265)
* apk: fix packages return value for apk-tools >= 3 (fix #11264)
* Add changelog fragment
(cherry picked from commit d424907172)
Co-authored-by: s-hamann <10639154+s-hamann@users.noreply.github.com>
This commit is contained in:
parent
0280b1ca5d
commit
0cff5dec9f
3 changed files with 12 additions and 2 deletions
|
|
@ -174,7 +174,7 @@ from ansible.module_utils.basic import AnsibleModule
|
|||
def parse_for_packages(stdout):
|
||||
packages = []
|
||||
data = stdout.split("\n")
|
||||
regex = re.compile(r"^\(\d+/\d+\)\s+\S+\s+(\S+)")
|
||||
regex = re.compile(r"^\(\s*\d+/\d+\)\s+\S+\s+(\S+)")
|
||||
for l in data:
|
||||
p = regex.search(l)
|
||||
if p:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue