mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 23:14:02 -07:00
[PR #10532/abfe1e61 backport][stable-11] apk: fix empty/whitespace-only package name check (#10556)
apk: fix empty/whitespace-only package name check (#10532)
* Fix empty/whitespace-only package name check.
* Adjust test.
(cherry picked from commit abfe1e6180
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
87a213225d
commit
fc2e2db6e4
3 changed files with 8 additions and 5 deletions
|
@ -351,7 +351,7 @@ def main():
|
|||
|
||||
p = module.params
|
||||
|
||||
if all(not name.strip() for name in p['name']):
|
||||
if p['name'] and any(not name.strip() for name in p['name']):
|
||||
module.fail_json(msg="Package name(s) cannot be empty or whitespace-only")
|
||||
|
||||
if p['no_cache']:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue