add fnmatch() support for apt remove too (just like install)

This commit is contained in:
Michael Vogt 2013-12-05 17:54:43 +01:00
parent 85d8587cc0
commit 559de5c65e

View file

@ -267,6 +267,7 @@ def install(m, pkgspec, cache, upgrade=False, default_release=None,
def remove(m, pkgspec, cache, purge=False,
dpkg_options=expand_dpkg_options(DPKG_OPTIONS)):
packages = ""
pkgspec = expand_pkgspec_from_fnmatches(m, pkgspec, cache)
for package in pkgspec:
name, version = package_split(package)
installed, upgradable, has_files = package_status(m, name, version, cache, state='remove')