mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
cc477ec920
commit
8d8df46fe6
1 changed files with 4 additions and 1 deletions
|
@ -1073,6 +1073,10 @@ class YumModule(YumDnf):
|
||||||
installed = self.is_installed(repoq, pkg)
|
installed = self.is_installed(repoq, pkg)
|
||||||
|
|
||||||
if installed:
|
if installed:
|
||||||
|
# Return a mesage so it's obvious to the user why yum failed
|
||||||
|
# and which package couldn't be removed. More details:
|
||||||
|
# https://github.com/ansible/ansible/issues/35672
|
||||||
|
res['msg'] = "Package '%s' couldn't be removed!" % pkg
|
||||||
self.module.fail_json(**res)
|
self.module.fail_json(**res)
|
||||||
|
|
||||||
res['changed'] = True
|
res['changed'] = True
|
||||||
|
@ -1306,7 +1310,6 @@ class YumModule(YumDnf):
|
||||||
return res
|
return res
|
||||||
|
|
||||||
def ensure(self, repoq):
|
def ensure(self, repoq):
|
||||||
|
|
||||||
pkgs = self.names
|
pkgs = self.names
|
||||||
|
|
||||||
# autoremove was provided without `name`
|
# autoremove was provided without `name`
|
||||||
|
|
Loading…
Reference in a new issue