From: Aram Sargsyan Date: Wed, 21 Sep 2022 08:25:52 +0000 (+0000) Subject: Fix a typo in doth system test's CA.cfg X-Git-Tag: v9.19.6~40^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60f1a73754351cd0b7cc071b2822792eb9bfc88e;p=thirdparty%2Fbind9.git Fix a typo in doth system test's CA.cfg The comments in CA.cfg file serve as a good tutorial for setting up a simple PKI for a system test. There is a typo in one of the presented commands, which results in openssl not exiting with an error message instead of generating a certificate. Fix the typo. --- diff --git a/bin/tests/system/doth/CA/CA.cfg b/bin/tests/system/doth/CA/CA.cfg index 97ea088bbb5..dcdff1f1368 100644 --- a/bin/tests/system/doth/CA/CA.cfg +++ b/bin/tests/system/doth/CA/CA.cfg @@ -5,7 +5,7 @@ # xxd -l 8 -u -ps /dev/urandom > ./serial # 2. Create the new certificate request (e.g. for foo.example.com): # openssl req -config ./CA.cfg -new -subj "/CN=foo.example.com" \ -# -addext "subjectAltName=DNS:foo.example.com,IP=X.X.X.X" \ +# -addext "subjectAltName=DNS:foo.example.com,IP:X.X.X.X" \ # -newkey rsa -keyout ./certs/foo.example.com.key \ # -out ./certs/foo.example.com.csr #