Skip to content

Commit

Permalink
Install optional playback packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dkobras committed May 4, 2020
1 parent 630ed41 commit 30f8aae
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
---
bbb_apt_repo_url: 'https://ubuntu.bigbluebutton.org/xenial-220/'
bbb_ubuntu_version: "16.04"
bbb_install_html5: True
bbb_install_playback_notes: True
bbb_install_playback_podcast: True
bbb_install_playback_screenshare: True
bbb_install_demo: False
bbb_install_check: False
bbb_configure_nat: False
Expand Down
18 changes: 18 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,24 @@
tags:
- install_bbb-html5

- name: Install notes playback package
apt: name=bbb-playback-notes state=present
when: bbb_install_playback_notes == True
tags:
- install_bbb-playback-notes

- name: Install podcast playback package
apt: name=bbb-playback-podcast state=present
when: bbb_install_playback_podcast == True
tags:
- install_bbb-playback-podcast

- name: Install screenshare playback package
apt: name=bbb-playback-screenshare state=present
when: bbb_install_playback_screenshare == True
tags:
- install_bbb-playback-screenshare

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

0 comments on commit 30f8aae

Please sign in to comment.