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:
parent
6d6df1959c
commit
6a7dac6176
1 changed files with 2 additions and 1 deletions
|
@ -209,9 +209,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:
|
||||
|
|
Loading…
Reference in a new issue