mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
pacman: do not fail if there is nothing to do (#8514)
Do not fail if there is nothing to do.
This commit is contained in:
parent
fd2cd5f28c
commit
df7fe19bbe
2 changed files with 5 additions and 2 deletions
2
changelogs/fragments/8514-pacman-empty.yml
Normal file
2
changelogs/fragments/8514-pacman-empty.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- "paman - do not fail if an empty list of packages has been provided and there is nothing to do (https://github.com/ansible-collections/community.general/pull/8514)."
|
|
@ -367,8 +367,9 @@ class Pacman(object):
|
||||||
self.install_packages(pkgs)
|
self.install_packages(pkgs)
|
||||||
self.success()
|
self.success()
|
||||||
|
|
||||||
# This shouldn't happen...
|
# This happens if an empty list has been provided for name
|
||||||
self.fail("This is a bug")
|
self.add_exit_infos(msg='Nothing to do')
|
||||||
|
self.success()
|
||||||
|
|
||||||
def install_packages(self, pkgs):
|
def install_packages(self, pkgs):
|
||||||
pkgs_to_install = []
|
pkgs_to_install = []
|
||||||
|
|
Loading…
Reference in a new issue