Browse Source

Escape double quotes in device model family (#772)

pull/805/head
Shevchenko Vitaliy 7 years ago committed by Ben Kochie
parent
commit
4ed49e73fb
  1. 2
      text_collector_examples/smartmon.sh

2
text_collector_examples/smartmon.sh

@ -74,7 +74,7 @@ parse_smartctl_info() {
local model_family='' device_model='' serial_number='' fw_version='' vendor='' product='' revision='' lun_id=''
while read line ; do
info_type="$(echo "${line}" | cut -f1 -d: | tr ' ' '_')"
info_value="$(echo "${line}" | cut -f2- -d: | sed 's/^ \+//g')"
info_value="$(echo "${line}" | cut -f2- -d: | sed 's/^ \+//g' | sed 's/"/\\"/')"
case "${info_type}" in
Model_Family) model_family="${info_value}" ;;
Device_Model) device_model="${info_value}" ;;

Loading…
Cancel
Save