Merge pull request #5181 from mvo5/bugfix/apt-fnmatch-remove

add fnmatch() support for apt remove too (just like install)
This commit is contained in:
jctanner 2013-12-05 09:18:04 -08:00
commit 59993ec76a

View file

@ -269,6 +269,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')