Fix hiding pcsensor exit code of head

This commit is contained in:
Christian Nicolai 2019-12-27 17:50:00 +01:00 committed by GitHub
parent 632b81b9f9
commit 45230791ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -18,14 +18,14 @@ if [ "${1}" = "config" ]; then
echo "temp.label temperatue" echo "temp.label temperatue"
echo "temp.type GAUGE" echo "temp.type GAUGE"
else else
TEMP=`${PCSENSOR} -cm | head -n 1` TEMP=$(${PCSENSOR} -cm)
if [[ $? != 0 ]]; then if [[ $? != 0 ]]; then
sleep 2 sleep 2
TEMP=`${PCSENSOR} -cm | head -n 1` TEMP=$(${PCSENSOR} -cm)
if [[ $? != 0 ]]; then if [[ $? != 0 ]]; then
sleep 6 sleep 6
TEMP=`${PCSENSOR} -cm | head -n 1` TEMP=$(${PCSENSOR} -cm)
fi fi
fi fi
echo "temp.value $TEMP" echo "temp.value $(echo -n "$TEMP" | head -n 1)"
fi fi