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>
pull/3263/head
martin f. krafft 11 years ago
parent fc2d25eb82
commit 8e37a2bec9

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

Loading…
Cancel
Save