From a43fe104d0014acb254475f0fbb4180b48ddac00 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Fri, 11 Dec 2020 17:57:26 -0600 Subject: [PATCH] Fix secure user definition --- quick_jibri_installer.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index a8f58be..9aed08a 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -501,7 +501,7 @@ done # read -p "Secure room moderator password: "$'\n' -r SEC_ROOM_PASS #fi #done - +echo -e "\n> Jitsi Meet Auth Method selection.\n" PS3='Select the authentication method for your Jitsi Meet instance: ' options=("Local" "JWT" "None") select opt in "${options[@]}" @@ -510,6 +510,8 @@ do "Local") echo -e "\n > Users are created manually using prosodyctl, only moderators can open a room or launch recording." ENABLE_SC="yes" + read -p "Set username for secure room moderator: "$'\n' -r SEC_ROOM_USER + read -p "Secure room moderator password: "$'\n' -r SEC_ROOM_PASS break ;; "JWT")