Merge pull request #7454 from nextcloud/enh/7447/recording-server-disabling

nextcloud-entrypoint: make recording server dependent on `REMOVE_DISABLED_APPS`
This commit is contained in:
Simon L. 2026-01-22 12:11:10 +01:00 committed by GitHub
commit 8124554d90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -894,7 +894,9 @@ if [ -d "/var/www/html/custom_apps/spreed" ]; then
RECORDING_SERVERS_STRING="{\"servers\":[{\"server\":\"http://$TALK_RECORDING_HOST:1234/\",\"verify\":true}],\"secret\":\"$RECORDING_SECRET\"}"
php /var/www/html/occ config:app:set spreed recording_servers --value="$RECORDING_SERVERS_STRING"
else
php /var/www/html/occ config:app:delete spreed recording_servers
if [ "$REMOVE_DISABLED_APPS" = yes ]; then
php /var/www/html/occ config:app:delete spreed recording_servers
fi
fi
fi