Merge pull request #5182 from mscherer/fix_5177
Fix apt module to be able to install package by giving just a provides a...
This commit is contained in:
commit
9dec25854e
1 changed files with 2 additions and 0 deletions
|
@ -169,6 +169,8 @@ def package_status(m, pkgname, version, cache, state):
|
||||||
ll_pkg = cache._cache[pkgname] # the low-level package object
|
ll_pkg = cache._cache[pkgname] # the low-level package object
|
||||||
except KeyError:
|
except KeyError:
|
||||||
if state == 'install':
|
if state == 'install':
|
||||||
|
if cache.get_providing_packages(pkgname):
|
||||||
|
return False, True, False
|
||||||
m.fail_json(msg="No package matching '%s' is available" % pkgname)
|
m.fail_json(msg="No package matching '%s' is available" % pkgname)
|
||||||
else:
|
else:
|
||||||
return False, False, False
|
return False, False, False
|
||||||
|
|
Loading…
Reference in a new issue