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

apt: fixed pkg=<name>=<version> fails if package is not yet installed.

Reported and patch provided by https://github.com/msolo. Closes GH-5625.
This commit is contained in:
Rene Moser 2014-01-16 10:48:35 +01:00
parent 87e7b9e5cc
commit 849aab0a12

View file

@ -191,7 +191,7 @@ def package_status(m, pkgname, version, cache, state):
# assume older version of python-apt is installed
package_is_installed = pkg.isInstalled
if version:
if version and package_is_installed:
try:
installed_version = pkg.installed.version
except AttributeError: