From ef58f011fbbf23ce74aba9d5c12856aa7d6312f6 Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 3 Jun 2024 10:56:18 +0200 Subject: [PATCH] CI: disable CAA record for now --- .github/workflows/test-and-deploy.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-and-deploy.yaml b/.github/workflows/test-and-deploy.yaml index f1c89829..9a6944be 100644 --- a/.github/workflows/test-and-deploy.yaml +++ b/.github/workflows/test-and-deploy.yaml @@ -33,6 +33,9 @@ jobs: # store previous acme & dkim state on ns.testrun.org, if it contains useful certs if [ -f dkimkeys/opendkim.private ]; then rsync -avz -e "ssh -o StrictHostKeyChecking=accept-new" dkimkeys root@ns.testrun.org:/tmp/ || true; fi if [ -z "$(ls -A acme/certs)" ]; then rsync -avz -e "ssh -o StrictHostKeyChecking=accept-new" acme root@ns.testrun.org:/tmp/ || true; fi + # make sure CAA record isn't set + ssh root@ns.testrun.org sed -i '/CAA/d' /etc/nsd/staging.testrun.org.zone + ssh root@ns.testrun.org systemctl reload nsd - name: rebuild staging.testrun.org to have a clean VPS run: |