Disable localrecording toolbar

This commit is contained in:
Luis Guzmán 2020-08-17 10:11:10 -05:00
parent 8cc13b91b9
commit cc76399416
2 changed files with 5 additions and 8 deletions

View File

@ -148,12 +148,10 @@ else
sed -i "s|https://jitsi.org/live|$support|g" $INT_CONF
fi
printf "${Purple}========== Re-enable Localrecording ==========${Color_Off}\n"
if [ "$LOC_REC" = "on" ]; then
echo "Setting LocalRecording..."
sed -i "s|'tileview'|'tileview', 'localrecording'|" $INT_CONF
else
echo "Moving on..."
printf "${Purple}========== Disable Localrecording ==========${Color_Off}\n"
if [ "$LOC_REC" != "on" ]; then
echo "Removing localrecording..."
sed -i "s|'localrecording',||" $INT_CONF
fi
printf "${Purple}========== Disable Blur my background ==========${Color_Off}\n"

View File

@ -175,7 +175,6 @@ systemctl restart php$PHPVER-fpm.service
#--------------------------------------------------
echo -e "\n---- Creating the PgSQL DB & User ----"
sudo -u postgres psql <<DB
CREATE DATABASE nextcloud_db;
CREATE USER ${NC_DB_USER} WITH ENCRYPTED PASSWORD '${NC_DB_PASSWD}';
@ -347,7 +346,7 @@ if [ "$ENABLE_HSTS" = "yes" ]; then
sed -i "s|# add_header Strict-Transport-Security|add_header Strict-Transport-Security|g" $NC_NGINX_CONF
fi
if [ ! "$DISTRO_RELEASE" = "xenial" ] && [ -z $PREAD_PROXY ]; then
if [ "$DISTRO_RELEASE" != "xenial" ] && [ -z $PREAD_PROXY ]; then
echo "
Setting up Nextcloud domain on Jitsi Meet turn proxy
"