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:
commit
59993ec76a
1 changed files with 1 additions and 0 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue