From: srs5694 Date: Sat, 20 Jul 2013 03:25:53 +0000 (-0400) Subject: Fixed install.sh confusion over autofs-mounted ESP. X-Git-Url: https://code.delx.au/refind/commitdiff_plain/7f1e7b5f752e324db88ab658e2b7d1bbb5b62922 Fixed install.sh confusion over autofs-mounted ESP. --- diff --git a/install.sh b/install.sh index a2c5612..dc6d898 100755 --- a/install.sh +++ b/install.sh @@ -33,6 +33,7 @@ # # Revision history: # +# 0.7.2 -- Fixed code that could be confused by use of autofs to mount the ESP # 0.7.0 -- Added support for the new Btrfs driver # 0.6.12 -- Added support for PreLoader as well as for shim # 0.6.11 -- Improvements in script's ability to handle directories with spaces @@ -635,7 +636,7 @@ FindLinuxESP() { fi InstallDir=`echo $EspLine | cut -d " " -f 6` if [[ -n "$InstallDir" ]] ; then - EspFilesystem=`grep "$InstallDir" /etc/mtab | uniq | cut -d " " -f 3` + EspFilesystem=`grep "$InstallDir" /etc/mtab | uniq | grep -v autofs | cut -d " " -f 3` fi echo "EspFilesystem is '$EspFilesystem'" if [[ $EspFilesystem != 'vfat' ]] ; then