From a687768c7bfefe173998ec0dc85e945ab16c9cd5 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 4 Sep 2023 15:04:31 +0200 Subject: [PATCH] fix curl call --- usr/bin/archboot-secureboot-keys.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-secureboot-keys.sh b/usr/bin/archboot-secureboot-keys.sh index 49b63c9b2..3a2f0b7f0 100755 --- a/usr/bin/archboot-secureboot-keys.sh +++ b/usr/bin/archboot-secureboot-keys.sh @@ -48,8 +48,8 @@ if [[ -n "${_DIR}" ]]; then ${NAME} EOF # download MS Certificates, else EFI might get broken! - ${_DLPROG} -L -O https://www.microsoft.com/pkiops/certs/MicWinProPCA2011_2011-10-19.crt - ${_DLPROG} -L -O https://www.microsoft.com/pkiops/certs/MicCorUEFCA2011_2011-06-27.crt + ${_DLPROG} https://www.microsoft.com/pkiops/certs/MicWinProPCA2011_2011-10-19.crt -O ./ + ${_DLPROG} https://www.microsoft.com/pkiops/certs/MicCorUEFCA2011_2011-06-27.crt -O ./ sbsiglist --owner 77fa9abd-0359-4d32-bd60-28f4e78f784b --type x509 --output MS_Win_db.esl MicWinProPCA2011_2011-10-19.crt sbsiglist --owner 77fa9abd-0359-4d32-bd60-28f4e78f784b --type x509 --output MS_UEFI_db.esl MicCorUEFCA2011_2011-06-27.crt cat MS_Win_db.esl MS_UEFI_db.esl > MS_db.esl