Fixing UEFI check if-loop

This commit is contained in:
maride 2017-10-01 17:35:35 +02:00
parent cb675e878e
commit b4281e8e74

View File

@ -1,16 +1,16 @@
#!/bin/sh #!/bin/sh
if [ "$bootloader" == "EFI" ]; then if [ "$bootloader" == "BIOS" ]; then
echo "~> Not an EFI host, not checking for EFI." echo "~> Not an EFI host, not checking for EFI."
amf_return=0 amf_return=0
fi
ls /sys/firmware/efi/efivars 2>/tmp/arch-maride-flavour_checks_uefi_error.log 1>/tmp/arch-maride-flavour_checks_uefi_out.log
return=$?
if [ "$return" -eq 0 ]; then
amf_return=0
else else
echo "~> This doesn't seem to be an UEFI boot. Please boot UEFI." ls /sys/firmware/efi/efivars 2>/tmp/arch-maride-flavour_checks_uefi_error.log 1>/tmp/arch-maride-flavour_checks_uefi_out.log
amf_return=1 return=$?
if [ "$return" -eq 0 ]; then
amf_return=0
else
echo "~> This doesn't seem to be an UEFI boot. Please boot UEFI."
amf_return=1
fi
fi fi