Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hansson <github@techandme.se>2018-08-09 16:45:48 +0300
committerGitHub <noreply@github.com>2018-08-09 16:45:48 +0300
commit8d7af3a046cc0ce132fe85dbcfc877a02e2eebe9 (patch)
tree3cd09a62d61e8f10ff67fbdce2c9dbefc3eb2b1c /lets-encrypt
parent642a795cee46583ace27c8a63205bd79b77410f1 (diff)
some more smaller fixes (#620)
Diffstat (limited to 'lets-encrypt')
-rw-r--r--lets-encrypt/activate-ssl.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lets-encrypt/activate-ssl.sh b/lets-encrypt/activate-ssl.sh
index 82140a1f..795976c1 100644
--- a/lets-encrypt/activate-ssl.sh
+++ b/lets-encrypt/activate-ssl.sh
@@ -243,15 +243,15 @@ attempts_left() {
local method="$1"
if [ "$method" == "standalone" ]
then
- printf "${ICyan}It seems like no certs were generated, we will do 2 more tries.${Color_Off}\n"
+ printf "%b" "${ICyan}It seems like no certs were generated, we will do 2 more tries.\n${Color_Off}"
any_key "Press any key to continue..."
elif [ "$method" == "webroot" ]
then
- printf "${ICyan}It seems like no certs were generated, we will do 1 more try.${Color_Off}\n"
+ printf "%b" "${ICyan}It seems like no certs were generated, we will do 1 more tries.\n${Color_Off}"
any_key "Press any key to continue..."
elif [ "$method" == "dns" ]
then
- printf "${ICyan}It seems like no certs were generated, we will do 0 more tries.${Color_Off}\n"
+ printf "%b" "${IRed}It seems like no certs were generated, please check your DNS and try again.\n${Color_Off}"
any_key "Press any key to continue..."
fi
}