From bd3fc09b30e9401746f76d0d3980a3e894c5d012 Mon Sep 17 00:00:00 2001 From: Paul Gier Date: Mon, 20 May 2019 13:05:39 -0500 Subject: fix or ignore codespell issues (#1351) Signed-off-by: Paul Gier --- text_collector_examples/md_info_detail.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'text_collector_examples') diff --git a/text_collector_examples/md_info_detail.sh b/text_collector_examples/md_info_detail.sh index 6d45248..9806ebb 100755 --- a/text_collector_examples/md_info_detail.sh +++ b/text_collector_examples/md_info_detail.sh @@ -59,7 +59,7 @@ for MD_DEVICE in /dev/md/*; do # Output RAID "Devices", "Size" and "Event" metrics, from the output of "mdadm --detail" while IFS= read -r line ; do - # Filter out these keys that have numberic values that increment up + # Filter out these keys that have numeric values that increment up if echo "$line" | grep -E -q "Devices :|Array Size :| Used Dev Size :|Events :"; then MDADM_DETAIL_KEY=$(echo "$line" | cut -d ":" -f 1 | tr -cd '[a-zA-Z0-9]._-') MDADM_DETAIL_VALUE=$(echo "$line" | cut -d ":" -f 2 | cut -d " " -f 2 | sed 's:^ ::') -- cgit v1.2.3