summaryrefslogtreecommitdiffstats
path: root/charts.d
diff options
context:
space:
mode:
authorpaulfantom <paulfantom@gmail.com>2016-06-07 23:58:13 +0200
committerpaulfantom <paulfantom@gmail.com>2016-06-07 23:58:13 +0200
commit6a5e711816e1803ef8e9fd12afcc766d2d148d4b (patch)
tree745972db0c9c05110bb4dab5ecb67ad1793f205d /charts.d
parentf9010e60cbe77973f40b2b1fc0b99aea89ea8e24 (diff)
unset file globbing before getting data with nc
Diffstat (limited to 'charts.d')
-rwxr-xr-xcharts.d/hddtemp.chart.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/charts.d/hddtemp.chart.sh b/charts.d/hddtemp.chart.sh
index 3bd8ef8b3a..704ab9d02b 100755
--- a/charts.d/hddtemp.chart.sh
+++ b/charts.d/hddtemp.chart.sh
@@ -41,7 +41,9 @@ hddtemp_count=0
hddtemp_update() {
# local all=( `nc $hddtemp_host $hddtemp_port | sed -e 's/||/\n/g;s/^|//' | cut -d '|' -f3` )
# local all=( `nc $hddtemp_host $hddtemp_port | awk 'BEGIN { FS="|" };{i=4; while (i <= NF) {print $i+0;i+=5;};}'` )
+ set -f
IFS="|" all=( $(nc $hddtemp_host $hddtemp_port) )
+ set +f
# write the result of the work.
echo "BEGIN hddtemp.temperature $1"