mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-23 12:30:46 +01:00
Escape double quotes in device model family (#772)
This commit is contained in:
parent
111e3af437
commit
4ed49e73fb
@ -74,7 +74,7 @@ parse_smartctl_info() {
|
|||||||
local model_family='' device_model='' serial_number='' fw_version='' vendor='' product='' revision='' lun_id=''
|
local model_family='' device_model='' serial_number='' fw_version='' vendor='' product='' revision='' lun_id=''
|
||||||
while read line ; do
|
while read line ; do
|
||||||
info_type="$(echo "${line}" | cut -f1 -d: | tr ' ' '_')"
|
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
|
case "${info_type}" in
|
||||||
Model_Family) model_family="${info_value}" ;;
|
Model_Family) model_family="${info_value}" ;;
|
||||||
Device_Model) device_model="${info_value}" ;;
|
Device_Model) device_model="${info_value}" ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user