From 693f5f849c972b5a704f59bacb8ef9c5261431aa Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sun, 18 Oct 2020 20:28:56 +0000 Subject: [PATCH] fix colors --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d3d97b87..209ecf49 100755 --- a/install.sh +++ b/install.sh @@ -161,7 +161,8 @@ if [[ $LETS_ENCRYPT == "y" ]]; then else echo -ne "\n${GREEN}We will generate a self-signed certificate for you.${NC}\n" - echo "\n${GREEN}You can replace this certificate later by generating the certificates and editting the nginx configuration\n" + echo -ne "\n${GREEN}You can replace this certificate later by generating the certificates and editing the nginx configuration${NC}\n" + read -n 1 -s -r -p "Press any key to continue..." sudo mkdir /certs/${rootdomain} sudo openssl req -newkey rsa:4096 -x509 -sha256 -days 365 -nodes -out /certs/${rootdomain}/pubkey.pem -keyout /certs/${rootdomain}/privkey.pem -subj "/C=US/ST=Some-State/L=city/O=Internet Widgits Pty Ltd/CN=*.${rootdomain}"