1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

"source" for apt

This commit is contained in:
Matthew Jones 2015-02-25 13:44:54 -05:00
parent 3615f8a634
commit b179517564

View File

@ -29,7 +29,8 @@ def deb_package_list():
ac_pkg = apt_cache[package].installed
package_details = dict(name=package,
version=ac_pkg.version,
architecture=ac_pkg.architecture)
architecture=ac_pkg.architecture,
source='apt')
installed_packages[package] = [package_details]
return installed_packages