Remove unnecessary \n from create_certificates.sh

When operating bin/create_certificates.sh, it shows like
 ...
 certificate need to be different so a hacker can't just use the server certificate from a
 compromised amphora to control all the others.
 \nTo use the certificates copy them to the directory specified in the octavia.conf

If we want to add a new line with "\n", we need to pass -e to echo.
Otherwise, we can just remove it.

Change-Id: I9cf7da7650df29c97ab8c46846dbf62f2bede5f4
This commit is contained in:
Kenichi Omichi 2019-03-09 00:09:56 +00:00
parent ff1a4761be
commit 2850c84770
1 changed files with 1 additions and 1 deletions

View File

@ -81,4 +81,4 @@ cat client-.pem client.key > client.pem
echo "Note: For production use the ca issuing the client certificate and the ca issuing the server"
echo "certificate need to be different so a hacker can't just use the server certificate from a"
echo "compromised amphora to control all the others."
echo "\nTo use the certificates copy them to the directory specified in the octavia.conf"
echo "To use the certificates copy them to the directory specified in the octavia.conf"