From 2850c847700b1783bbebe3b0956dfe6b24a37a2f Mon Sep 17 00:00:00 2001 From: Kenichi Omichi Date: Sat, 9 Mar 2019 00:09:56 +0000 Subject: [PATCH] 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 --- bin/create_certificates.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/create_certificates.sh b/bin/create_certificates.sh index 0e5b5af9b9..ea56270fcf 100755 --- a/bin/create_certificates.sh +++ b/bin/create_certificates.sh @@ -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"