From 7665a08e0e712afedadf7a561cb91abe8f056b2f Mon Sep 17 00:00:00 2001 From: Ark74 Date: Thu, 30 Apr 2020 17:23:13 -0500 Subject: [PATCH] fix message from option --- quick_jibri_installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index e05aff1..263ba17 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -148,9 +148,9 @@ fi while [[ $LE_SSL != yes && $LE_SSL != no ]] do read -p "> Do you plan to use Let's Encrypt SSL certs?: (yes or no)"$'\n' -r LE_SSL -if [ $LE_SSL = no ]; then +if [ $LE_SSL = yes ]; then echo "We'll defaul to Let's Encrypt SSL cers." -elif [ $LE_SSL = yes ]; then +elif [ $LE_SSL = no ]; then echo "We'll let you choose later on for it." fi done