-
Bug
-
Resolution: Done
-
Normal
-
6.15.z
Description of problem:
In 2.7.2.2. Deploying a custom SSL certificate to Capsule Server.
The command in step 1 of the procedure is wrong due to non closed " generating syntax error :
- capsule-certs-generate \
--foreman-proxy-fqdn capsule.example.com \
--certs-tar ~/capsule.example.com-certs.tar \
-server-cert /root/capsule_cert/capsule_cert.pem \ 1server-key /root/capsule_cert/capsule_cert_key.pem \ 2server-ca-cert "/root/capsule_cert/ca_cert_bundle.pem \ 3-certs-update-server
How reproducible:
Always
Is this issue a regression from an earlier version:
No
Steps to Reproduce:
1. The provided command in documentation is wrong due to additional (") in front of --server-ca-cert which is not closed , resulting into error.
2.
3.
Actual behavior:
The provided command in documentation generates error due to syntax error in documentation.
Expected behavior:
The command should be correct and should not contain syntax error.
Business Impact / Additional info:
The correct command should be like:
capsule-certs-generate --foreman-proxy-fqdn "$CAPSULE" \
--certs-tar "~/CAPSULE-certs.tar" \
--server-cert "/root/capsule_cert/capsule_cert.pem" \
--server-key "/root/capsule_cert/capsule_cert_key.pem" \
--server-ca-cert "/root/capsule_cert/ca_cert_bundle.pem" \
--certs-update-server