Skip to content

Commit

Permalink
Install bbb webhooks by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dkobras committed May 5, 2020
1 parent f1de822 commit 52a072d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ To get up _BigBlueButton_ up and running the following variables can be configur
* `bbb_install_playback_notes`: Install the bbb-playback-notes package to play back shared notes from a recorded session (Default: `True`).
* `bbb_install_playback_podcast`: Install the bbb-playback-podcast package to play back audio from a recorded session (Default: `True`).
* `bbb_install_playback_screenshare`: Install the bbb-playback-screenshare package to play back shared screens from a recorded session (Default: `True`).
* `bbb_install_webhooks`: Install the bbb-webhooks package, useful to integrate bbb into other web applications (Default: `True`).

## Example Playbook

Expand Down
1 change: 1 addition & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ bbb_install_html5: True
bbb_install_playback_notes: True
bbb_install_playback_podcast: True
bbb_install_playback_screenshare: True
bbb_install_webhooks: True
bbb_install_demo: False
bbb_install_check: False
bbb_configure_nat: False
Expand Down
6 changes: 6 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@
tags:
- install_bbb-playback-screenshare

- name: Install bbb webhooks package
apt: name=bbb-webhooks state=present
when: bbb_install_webhooks == True
tags:
- install_bbb-webhooks

- name: Install bbb-demo package
apt: name=bbb-demo state=present
when: bbb_install_demo == True
Expand Down

0 comments on commit 52a072d

Please sign in to comment.