aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cert-extensions
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2026-05-14 13:19:00 +0200
committerGuilhem Moulin <guilhem@fripost.org>2026-05-14 13:41:10 +0200
commitda63d5b6ca409b46161ceecab1b3dd3f831491df (patch)
treeb6844cf7d207402fa2d7ebfadfcfde9c1a13bac4 /tests/cert-extensions
parent207f0cd7a1d03f8dfe035bb6583b4f4e68ba38b6 (diff)
Drop OCSP must-staple extension test which is no longer available.HEADmaster
“Error finalizing order :: OCSP must-staple extension is no longer available: see https://letsencrypt.org/2024/12/05/ending-ocsp”
Diffstat (limited to 'tests/cert-extensions')
-rw-r--r--tests/cert-extensions27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/cert-extensions b/tests/cert-extensions
index 3cb0a43..9c5b977 100644
--- a/tests/cert-extensions
+++ b/tests/cert-extensions
@@ -61,31 +61,4 @@ x509_check /etc/lacme/test2.crt <<-EOF
DNS:$(echo "$commonName" "$subjectAltName" | tr " " "\\n" | sort -u | paste -sd" " | sed -r "s/ /, DNS:/g")
EOF
-# tlsfeature
-openssl genpkey -algorithm RSA -out /etc/lacme/test3.key
-commonName="$(head -c10 /dev/urandom | base32 -w0 | tr "A-Z" "a-z").$DOMAINNAME"
-cat >"/etc/lacme/lacme-certs.conf.d/test3.conf" <<- EOF
- [test3]
- certificate-key = /etc/lacme/test3.key
- certificate-chain = /etc/lacme/test3.crt
- subject = /CN=$commonName
- tlsfeature = status_request
-EOF
-
-lacme newOrder test3
-test /etc/lacme/test3.crt -nt /etc/lacme/test3.key
-x509_check /etc/lacme/test3.crt <<-EOF
- subject=/CN=$commonName
- X509v3 Key Usage: critical
- Digital Signature, Key Encipherment
- X509v3 Extended Key Usage:
- TLS Web Server Authentication
- X509v3 Basic Constraints: critical
- CA:FALSE
- X509v3 Subject Alternative Name:
- DNS:$commonName
- TLS Feature:
- status_request
-EOF
-
# vim: set filetype=sh :