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:
martin f. krafft 2013-06-19 08:37:14 +02:00
parent 0596f474cf
commit 1bf4438e60

View file

@ -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: