mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
The previous error message was not giving the full or even correct
information to the user.
(cherry picked from commit d3adde4739
)
Co-authored-by: Cameron Nemo <CameronNemo@users.noreply.github.com>
This commit is contained in:
parent
24b5530cfc
commit
0c5422811d
2 changed files with 5 additions and 1 deletions
2
changelogs/fragments/4438-fix-error-message.yaml
Normal file
2
changelogs/fragments/4438-fix-error-message.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- xbps - fix error message that is reported when installing packages fails (https://github.com/ansible-collections/community.general/pull/4438).
|
|
@ -230,7 +230,9 @@ def install_packages(module, xbps_path, state, packages):
|
|||
module.params['upgrade_xbps'] = False
|
||||
install_packages(module, xbps_path, state, packages)
|
||||
elif rc != 0 and not (state == 'latest' and rc == 17):
|
||||
module.fail_json(msg="failed to install %s" % (package))
|
||||
module.fail_json(msg="failed to install %s packages(s)"
|
||||
% (len(toInstall)),
|
||||
packages=toInstall)
|
||||
|
||||
module.exit_json(changed=True, msg="installed %s package(s)"
|
||||
% (len(toInstall)),
|
||||
|
|
Loading…
Reference in a new issue