Changes of Revision 37
[-] | Changed | _service:set_version:ix-inventory-system.spec |
1
2 %define pkgname inventory-system 3 Name: ix-inventory-system 4 Release: 0 5 -Version: 0.1.1 6 +Version: 0.1.2 7 Url: http://www.internetx.com/ 8 License: GPLv2 9 Group: System 10 |
||
[+] | Changed | _service:recompress:tar_scm:inventory-system-0.1.2.tar.bz2/client/inventory-system.sh ^ |
@@ -1,8 +1,8 @@ #!/usr/bin/env bash # Inventory System # Author: Carsten Schoene -# $LastChangedDate: 2015-08-06 12:05:21 +0200 (Thu, 06 Aug 2015) $ -# $Rev: 10469 $ +# $LastChangedDate: 2017-09-14 09:26:55 +0200 (Thu, 14 Sep 2017) $ +# $Rev: 11564 $ # # Default options (can be changed by inventory-system.conf) DEBUG="yes" @@ -381,10 +381,15 @@ INSTMEM=`${CAT} /proc/meminfo | ${GREP} "^MemTotal:" | ${AWK} '{print int($2/1024)}'` ;; *) - for MODULE in `${DMIDECODE} -t memory | ${GREP} -E '\<Size:.*MB$' | ${GREP} -iv -E '(No Module Installed|Maximum)' | ${AWK} '{print $(NF-1)}'` + for MODULE in `${DMIDECODE} -t memory | ${GREP} -E '\<Size:.*[MG]B$' | ${GREP} -iv -E '(No Module Installed|Maximum)' | ${AWK} '{print $(NF-1)}'` do + # if the module size is given in GB, multiply with 1024, 128GB is the maximum size per module which is currently (2017) available + if [ ${MODULE} -le 128 ] ; then + MODULE=`${EXPR} ${MODULE} \* 1024` + fi INSTMEM=`${EXPR} ${INSTMEM} + ${MODULE}` done + ;; esac debug "SYSTEM-MEMORY: ${INSTMEM}" | ||
[+] | Changed | _service:set_version:debian.changelog ^ |
@@ -1,4 +1,4 @@ -ix-inventory-system (0.1.1) stable; urgency=low +ix-inventory-system (0.1.2) stable; urgency=low * Initial Release | ||
[+] | Changed | _service:set_version:ix-inventory-system.dsc ^ |
@@ -2,7 +2,7 @@ Source: ix-inventory-system Binary: ix-inventory-system Architecture: any -Version: 0.1.1-1 +Version: 0.1.2-1 Maintainer: Carsten Schoene <cs@linux-administrator.com> Standards-Version: 0.0.1 Build-Depends: cdbs, cmake, debhelper |