Skip to content

Commit

Permalink
fix: provides debian installed software filesize in bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
g-bougard committed Nov 6, 2019
1 parent fda1f5e commit dce6b3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -23,6 +23,7 @@ inventory:
* win32: fix firewall inventory cases, thanks to PR-gh
* win32: fix Office license inventory, thanks to PR-gh
* win32: enhanced network card inventory, thanks to PR-gh
* linux: provides debian installed software filesize in bytes

netdiscovery/netinventory:
* linux: avoid to share HTTP client with threads to fix RHEL/CentOS 7 crash
Expand Down
Expand Up @@ -74,7 +74,7 @@ sub _getPackagesList {
NAME => $infos[0],
ARCH => $infos[1],
VERSION => $infos[2],
FILESIZE => $infos[3],
FILESIZE => $infos[3]*1024,
FROM => 'deb',
SYSTEM_CATEGORY => $infos[4]
};
Expand Down

0 comments on commit dce6b3d

Please sign in to comment.