1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

older python-apt compatibility

This commit is contained in:
fabios 2014-12-27 15:30:56 -05:00 committed by Matt Clay
parent 301c8b8e09
commit 21bfa80203

View file

@ -202,8 +202,12 @@ def package_status(m, pkgname, version, cache, state):
ll_pkg = cache._cache[pkgname] # the low-level package object
except KeyError:
if state == 'install':
if cache.get_providing_packages(pkgname):
return False, True, False
try:
if cache.get_providing_packages(pkgname):
return False, True, False
except AttributeError:
# older python-apt providing packages cannot be used
pass
m.fail_json(msg="No package matching '%s' is available" % pkgname)
else:
return False, False, False