mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix purging of packages
A small error in the reuse of a variable caused packages to never get purged. This commit fixes that. Signed-off-by: martin f. krafft <madduck@madduck.net>
This commit is contained in:
@@ -210,9 +210,10 @@ def remove(m, pkgspec, cache, purge=False):
|
||||
if len(packages) == 0:
|
||||
m.exit_json(changed=False)
|
||||
else:
|
||||
purge = ''
|
||||
if purge:
|
||||
purge = '--purge'
|
||||
else:
|
||||
purge = ''
|
||||
cmd = "%s -q -y %s remove %s" % (APT_GET_CMD, purge,packages)
|
||||
|
||||
if m.check_mode:
|
||||
|
||||
Reference in New Issue
Block a user