From 8a8971417055e5d3a1307677406f684e5bcb3b99 Mon Sep 17 00:00:00 2001 From: Luis Guzman Date: Tue, 2 Apr 2019 10:33:33 -0600 Subject: [PATCH] Fix config.sj After update new added comments break configuration. --- 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 f7e7255..fa794a4 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -306,7 +306,7 @@ sed -i "s|// liveStreamingEnabled: false,|liveStreamingEnabled: true,\\ #Dropbox feature if [ $ENABLE_DB = "yes" ]; then DB_STR=$(grep -n "dropbox:" $MEET_CONF | cut -d ":" -f1) -DB_END=$((DB_STR + 4)) +DB_END=$((DB_STR + 10)) sed -i "$DB_STR,$DB_END{s|// dropbox: {|dropbox: {|}" $MEET_CONF sed -i "$DB_STR,$DB_END{s|// appKey: ''|appKey: \'$DB_CID\'|}" $MEET_CONF sed -i "$DB_STR,$DB_END{s|// },|},|}" $MEET_CONF