Skip to content

Commit

Permalink
Add HTML5 client and deps by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dkobras committed May 4, 2020
1 parent 68ad048 commit 630ed41
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,47 @@
tags:
- install_bbb

- name: Check MongoDB apt key is present
apt_key:
url: "https://www.mongodb.org/static/pgp/server-3.4.asc"
state: present
when: bbb_install_html5 == True
tags:
- mongodb-apt_key

- name: Check MongoDB repo is enabled
apt_repository: repo="deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" state=present
when: bbb_install_html5 == True
tags:
- mongodb-repositories
- repositories

- name: Check NodeJS apt key is present
apt_key:
url: "https://deb.nodesource.com/gpgkey/nodesource.gpg.key"
state: present
when: bbb_install_html5 == True
tags:
- nodejs-apt_key

- name: Check NodeJS repo is enabled
apt_repository: repo="deb https://deb.nodesource.com/node_8.x xenial main" state=present
when: bbb_install_html5 == True
tags:
- nodejs-repositories
- repositories
- name: Install bbb-html5 and dependencies
apt:
name:
- bbb-html5
- mongodb-org
- curl
- nodejs
state: present
when: bbb_install_html5 == True
tags:
- install_bbb-html5

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

0 comments on commit 630ed41

Please sign in to comment.