From 4d4d8da3b38e5b39bfdc885330cf3079c29b3f35 Mon Sep 17 00:00:00 2001 From: ulif Date: Sun, 7 Jun 2020 16:23:08 +0200 Subject: [PATCH] Disable recording in config. --- bbb-apply-config.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/bbb-apply-config.yml b/bbb-apply-config.yml index 04b4ae8..20498f0 100644 --- a/bbb-apply-config.yml +++ b/bbb-apply-config.yml @@ -12,6 +12,9 @@ debug: msg: Hello world, from {{ ansible_fqdn }}. + # + # nginx + # - name: nginx config - make port 80 redirect to 443 blockinfile: path: /etc/nginx/sites-available/bigbluebutton @@ -32,3 +35,25 @@ regexp: '^(.*)ssl_protocols .*;' line: '\1ssl_protocols TLSv1.2;' backrefs: yes + + + # + # recording + # + - name: disable recording button + lineinfile: + path: /usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties + regexp: '^allowStartStopRecording=.*' + line: 'allowStartStopRecording=false' + + - name: disable recording auto start + lineinfile: + path: /usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties + regexp: '^autoStartRecording=.*' + line: 'autoStartRecording=false' + + - name: disable recording generally, even if record param in api set to record + lineinfile: + path: /usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties + regexp: '^disableRecordingDefault=.*' + line: 'disableRecordingDefault=true' -- GitLab