better automounted detection

This commit is contained in:
rootzoll 2018-11-27 05:20:31 +01:00
parent 9960966c95
commit b5dc3816e7

View File

@ -86,8 +86,8 @@ while [ ${hddExists} -eq 0 ]
done
# check if the HDD is auto-mounted
hddIsAutoMounted=$(ls -la /mnt/hdd 2>/dev/null)
if [ ${#hddIsAutoMounted} -eq 0 ]; then
hddIsAutoMounted=$(lsblk | grep -c '/mnt/hdd')
if [ ${hddIsAutoMounted} -eq 0 ]; then
echo "HDD is there but not AutoMounted yet." >> $logFile
echo "Analysing the situation ..." >> $logFile