Add Letsencrypt intermediary cert

This commit is contained in:
Peter Šurda 2022-09-20 20:56:45 +08:00
parent 68244b00fa
commit af1a33cbaa
Signed by: PeterSurda
GPG Key ID: 3E47497CF67ABB95
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
LE_CERT=isrgrootx1.pem,isrg-root-x2.pem
LE_CERT=isrgrootx1.pem,isrg-root-x2.pem,lets-encrypt-r3.pem
function clone_ipxe_upstream() {
local ipxe_src_dir="$1"
@ -49,7 +49,7 @@ function sed_enabled_ipxe_features() {
echo "Downloading default iPXE CA certificate"
cd ipxe/src
wget https://letsencrypt.org/certs/{isrgrootx1,isrg-root-x2}.pem
wget https://letsencrypt.org/certs/{isrgrootx1,isrg-root-x2,lets-encrypt-r3}.pem
return 0
}