From c9cf1cc5542eabda4c0ce9bf40e81f823211e105 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Thu, 28 Feb 2013 14:28:53 +0100 Subject: [PATCH] dom0/hcl-report: minor fix --- dom0/qvm-tools/qubes-hcl-report | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dom0/qvm-tools/qubes-hcl-report b/dom0/qvm-tools/qubes-hcl-report index 06c3db7b..e294fd4b 100755 --- a/dom0/qvm-tools/qubes-hcl-report +++ b/dom0/qvm-tools/qubes-hcl-report @@ -8,8 +8,8 @@ fi DATE=`date +%Y%m%d` -BRAND=`sudo dmidecode |grep -A9 "System Information" |grep "Manufacturer:" |cut -d ' ' -f2- |tr -s [:blank:] _` -PRODUCT=`sudo dmidecode |grep -A9 "System Information" |grep "Product Name:" |cut -d ' ' -f3- |tr -s [:blank:] _` +BRAND=`sudo dmidecode |grep -A9 "System Information" |grep "Manufacturer:" |cut -d ' ' -f2- |tr -s '[:blank:]' _` +PRODUCT=`sudo dmidecode |grep -A9 "System Information" |grep "Product Name:" |cut -d ' ' -f3- |tr -s '[:blank:]' _` CPU=`sudo cat /proc/cpuinfo |grep "model name" |sort -u |cut -d ' ' -f3-` CHIPSET=`sudo lspci -nn |grep "00:00.0.*Host bridge"`