Manage case of scan doesn't return any result
This commit is contained in:
parent
3258881a0f
commit
5ec0d0c8ee
|
@ -87,56 +87,60 @@ if test -f /tmp/dscan; then rm -f -- /tmp/dscan; fi
|
||||||
smartctl --scan > /tmp/dscan
|
smartctl --scan > /tmp/dscan
|
||||||
|
|
||||||
# TODO: Test if the file is not empty
|
# TODO: Test if the file is not empty
|
||||||
|
if test -s /tmp/dscan; then
|
||||||
|
while IFS= read -r LINE; do
|
||||||
|
## Get device path
|
||||||
|
DISK=$(echo "${LINE}" | cut -d" " -f1)
|
||||||
|
## Try to determine the best type
|
||||||
|
SCANNED_TYPE=$(echo "${LINE}" | cut -d" " -f3)
|
||||||
|
choose_correct_type "${DISK}" "${SCANNED_TYPE}"
|
||||||
|
|
||||||
while IFS= read -r LINE; do
|
## If no correct type was found for this device
|
||||||
## Get device path
|
if [ -z "${TYPE}" ]; then
|
||||||
DISK=$(echo "${LINE}" | cut -d" " -f1)
|
[ "${debug}" -eq "0" ] && printf "${c_magentab}%-6b${c_reset}\n" "DEBUG : SMART is not fully supported."
|
||||||
## Try to determine the best type
|
DRES=$(printf '%s' "${SMART_SUPPORT_MSG}")
|
||||||
SCANNED_TYPE=$(echo "${LINE}" | cut -d" " -f3)
|
DCODE="2"
|
||||||
choose_correct_type "${DISK}" "${SCANNED_TYPE}"
|
TYPE="unsupported"
|
||||||
|
else
|
||||||
|
[ "${debug}" -eq "0" ] && printf "${c_magentab}%-6b${c_reset}\n" "DEBUG : SMART seems fully supported, proceed normally."
|
||||||
|
### Get SMART Health Status and return code
|
||||||
|
DRES=$(/usr/sbin/smartctl -H -d "${TYPE}" -n standby "${DISK}")
|
||||||
|
DCODE=$?
|
||||||
|
fi
|
||||||
|
|
||||||
## If no correct type was found for this device
|
DSTBY=$(( DCODE & 2 ))
|
||||||
if [ -z "${TYPE}" ]; then
|
DFAIL=$(( DCODE & 8 ))
|
||||||
[ "${debug}" -eq "0" ] && printf "${c_magentab}%-6b${c_reset}\n" "DEBUG : SMART is not fully supported."
|
DWARN=$(( DCODE & 32 ))
|
||||||
DRES=$(printf '%s' "${SMART_SUPPORT_MSG}")
|
|
||||||
DCODE="2"
|
|
||||||
TYPE="unsupported"
|
|
||||||
else
|
|
||||||
[ "${debug}" -eq "0" ] && printf "${c_magentab}%-6b${c_reset}\n" "DEBUG : SMART seems fully supported, proceed normally."
|
|
||||||
### Get SMART Health Status and return code
|
|
||||||
DRES=$(/usr/sbin/smartctl -H -d "${TYPE}" -n standby "${DISK}")
|
|
||||||
DCODE=$?
|
|
||||||
fi
|
|
||||||
|
|
||||||
DSTBY=$(( DCODE & 2 ))
|
## Give a weight to each to color to easily get the page status
|
||||||
DFAIL=$(( DCODE & 8 ))
|
if test $DSTBY -ne 0
|
||||||
DWARN=$(( DCODE & 32 ))
|
then
|
||||||
|
COLOR="4&clear"
|
||||||
|
elif test $DFAIL -ne 0
|
||||||
|
then
|
||||||
|
COLOR="1&red"
|
||||||
|
elif test $DWARN -ne 0
|
||||||
|
then
|
||||||
|
COLOR="2&yellow"
|
||||||
|
else
|
||||||
|
COLOR="3&green"
|
||||||
|
fi
|
||||||
|
|
||||||
## Give a weight to each to color to easily get the page status
|
echo "${COLOR} $DISK ${TYPE}"
|
||||||
if test $DSTBY -ne 0
|
|
||||||
then
|
|
||||||
COLOR="4&clear"
|
|
||||||
elif test $DFAIL -ne 0
|
|
||||||
then
|
|
||||||
COLOR="1&red"
|
|
||||||
elif test $DWARN -ne 0
|
|
||||||
then
|
|
||||||
COLOR="2&yellow"
|
|
||||||
else
|
|
||||||
COLOR="3&green"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "${COLOR} $DISK ${TYPE}"
|
{
|
||||||
|
echo "${COLOR} $DISK ${TYPE}" | cut -c2-
|
||||||
|
echo ""
|
||||||
|
echo "$DRES" | grep -v -E "^smartctl|^Copyright|^$|^==="
|
||||||
|
echo "------------------------------------------------------------"
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
} >>/tmp/dres
|
||||||
|
done < /tmp/dscan > /tmp/dcheck
|
||||||
|
|
||||||
{
|
else
|
||||||
echo "${COLOR} $DISK ${TYPE}" | cut -c2-
|
echo "1&red Error while scanning devices with smartctl" > /tmp/dcheck
|
||||||
echo ""
|
fi
|
||||||
echo "$DRES" | grep -v -E "^smartctl|^Copyright|^$|^==="
|
|
||||||
echo "------------------------------------------------------------"
|
|
||||||
echo ""
|
|
||||||
echo ""
|
|
||||||
} >>/tmp/dres
|
|
||||||
done < /tmp/dscan >/tmp/dcheck
|
|
||||||
|
|
||||||
# Set the global color according to the highest alert
|
# Set the global color according to the highest alert
|
||||||
COLOR=$(< /tmp/dcheck awk '{print $1}' | sort | uniq | head -1 | cut -c3-)
|
COLOR=$(< /tmp/dcheck awk '{print $1}' | sort | uniq | head -1 | cut -c3-)
|
||||||
|
|
Loading…
Reference in New Issue