Skip to content

Commit

Permalink
Disable Recording Button
Browse files Browse the repository at this point in the history
This patch disables the recording button, stopping users from cluttering
the servers with conference recordings and taking away important
resources from the system.

This is part of a fix for #2.
  • Loading branch information
lkiesow committed Mar 29, 2020
1 parent c85bf9b commit 54c30a2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions roles/bigbluebutton/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@
- {id: hd, default: 'false'}
notify: restart bbb

- name: disable recording button
lineinfile:
path: /usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties
regexp: '^allowStartStopRecording='
line: 'allowStartStopRecording=false'
notify: restart bbb

- name: ufw allow known services
ufw:
rule: allow
Expand Down

0 comments on commit 54c30a2

Please sign in to comment.