From 98b0361fcf8e4efa687b9b354ae5fc1c1e06091e Mon Sep 17 00:00:00 2001 From: gabrc52 Date: Mon, 9 Nov 2020 13:08:37 -0600 Subject: [PATCH 1/3] Correct script file name in README The README suggests running a script called `quick-jibri-installer.sh`, but it doesn't exist. What exists is `quick_jibri_installer.sh`. I've also added `sudo` since it asks for root permissions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 111df8b..6886f99 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Login into your clean server, clone git repository and run the installer, ``` git clone https://github.com/switnet-ltd/quick-jibri-installer cd quick-jibri-installer -bash quick-jibri-installer.sh +sudo bash quick_jibri_installer.sh ``` ### Add Jibri node -- 2.34.1 From 5a3afe5f3b3f54623e801e8103c4c243dd75eed9 Mon Sep 17 00:00:00 2001 From: Luis Guzman Date: Wed, 28 Apr 2021 16:32:28 -0500 Subject: [PATCH 2/3] Update custom changes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d933a10..652aa66 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Feel free to use our `test-jibri-env.sh` tool to find some details on your curre ## Custom changes * Start with video muted by default * Start with audio muted but moderator -* Set displayname as not required since jibri can't set it up. +* Set pre-join screen by default. ## Documentation -- 2.34.1 From a103b000260f33701662e83e9fa396d5e091d470 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Thu, 29 Apr 2021 10:41:43 -0500 Subject: [PATCH 3/3] Fix jbrecord variable --- quick_jibri_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index 5ad578e..8132bcf 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -1144,7 +1144,7 @@ if [ "$DISABLE_LOCAL_JIBRI" = "yes" ]; then systemctl disable jibri-xorg systemctl disable jibri-icewm # Manually apply permissions since finalize_recording.sh won't be triggered under this server options. - chmod -R 770 $RECORDINGS_DIR + chmod -R 770 $DIR_RECORD fi enable_letsencrypt -- 2.34.1