Skip to content
Snippets Groups Projects
Commit 2b61eaf4 authored by Elena ``of Valhalla'' Grandi's avatar Elena ``of Valhalla'' Grandi
Browse files

Show installed version of packages rather than the latest available. refs: #783

parent 03086da5
No related branches found
No related tags found
No related merge requests found
......@@ -166,8 +166,8 @@ def get_installed_packages(log, IS_FUSS_SERVER):
if pkg_cache.has_key(package):
found_package = pkg_cache[package]
if found_package.is_installed:
client_data[package] = found_package.versions[0].version
log.debug("%s %s" % (package, found_package.versions[0].version))
client_data[package] = found_package.installed.version
log.debug("%s %s" % (package, found_package.installed.version))
# refs #617 : rename fuss-client into fussclient to ensure correct parsing in octomon
if "fuss-client" in client_data:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment