From af1a33cbaa593ed37a763318302da52c2d053da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0urda?= Date: Tue, 20 Sep 2022 20:56:45 +0800 Subject: [PATCH] Add Letsencrypt intermediary cert --- buildbot/buildbot_steps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildbot/buildbot_steps.sh b/buildbot/buildbot_steps.sh index 87b3fb8..7cdb7ee 100755 --- a/buildbot/buildbot_steps.sh +++ b/buildbot/buildbot_steps.sh @@ -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 }