Migration des patch dans les fichiers custom-*.js

This commit is contained in:
Loïc 2021-09-18 23:11:55 +02:00
parent b31e556b31
commit e72a1daa32

View file

@ -14,15 +14,17 @@ fi
mkdir -p ~/${confvolume}/{web/letsencrypt,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri} mkdir -p ~/${confvolume}/{web/letsencrypt,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri}
${ABSDIR}/10_install.sh
# Patch config.js # Patch config.js
sed_in_place "^ enabled: true," " enabled: false," ~/${confvolume}/web/config.js echo "
sed_in_place "^ // enableInsecureRoomNameWarning: false," " enableInsecureRoomNameWarning: true," ~/${confvolume}/web/config.js config.enableInsecureRoomNameWarning = true;
sed_in_place "^ // disableThirdPartyRequests: false," " disableThirdPartyRequests: true," ~/${confvolume}/web/config.js
sed_in_place "^ // remoteVideoMenu: {" " remoteVideoMenu: {\n disableKick: false,\n disableGrantModerator: false,\n }," ~/${confvolume}/web/config.js config.disableThirdPartyRequests = true;
" > ~/${confvolume}/web/custom-config.js
# Patch ~/${confvolume}/web/interface_config.js # Patch ~/${confvolume}/web/interface_config.js
sed_in_place "^ APP_NAME: 'Jitsi Meet'," " APP_NAME: 'Jitsi Garbaye'," ~/${confvolume}/web/interface_config.js echo "
sed_in_place "^ DEFAULT_REMOTE_DISPLAY_NAME: 'Fellow Jitster'," " DEFAULT_REMOTE_DISPLAY_NAME: 'Participant'," ~/${confvolume}/web/interface_config.js interfaceConfig.APP_NAME = 'Jitsi Garbaye';
sed_in_place "^ JITSI_WATERMARK_LINK: 'https://jitsi.org'," " JITSI_WATERMARK_LINK: '${GARBAYE_JITSI_URL}'," ~/${confvolume}/web/interface_config.js interfaceConfig.DEFAULT_REMOTE_DISPLAY_NAME = 'Participant';
interfaceConfig.JITSI_WATERMARK_LINK = 'https://qlf-jitsi.garbaye.fr';
" > ~/${confvolume}/web/custom-interface_config.js