Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ python: "2.7"
# Use the new container infrastructure
sudo: required

dist: trusty
dist: xenial

# Install ansible
addons:
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.box = "ubuntu/xenial64"

config.vm.network "private_network", ip: "10.10.10.10"

Expand Down
6 changes: 2 additions & 4 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
bbb_apt_key: '328BD16D'
bbb_apt_key: 'FAB46452'

#Repositories
bbb_apt_repo_url: 'http://ubuntu.bigbluebutton.org/trusty-1-0/'
libreoffice_ppa: 'ppa:libreoffice/libreoffice-4-4'
ffmpeg_ppa: 'ppa:mc3man/trusty-media'
bbb_apt_repo_url: 'http://ubuntu.bigbluebutton.org/xenial-110/'
4 changes: 2 additions & 2 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ galaxy_info:
# - quantal
# - raring
# - saucy
- trusty
# - trusty
# - utopic
# - vivid
# - wily
# - xenial
- xenial
#- name: SLES
# versions:
# - all
Expand Down
24 changes: 6 additions & 18 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

- name: BigBlueButton apt key is present
apt_key:
url: http://ubuntu.bigbluebutton.org/bigbluebutton.asc
url: http://ubuntu.bigbluebutton.org/repo/bigbluebutton.asc
id: '{{ bbb_apt_key }}'
state: present
tags:
Expand All @@ -38,30 +38,18 @@
- name: multiverse apt repositories are enabled
apt_repository: repo={{ item }} state=present
with_items:
- 'deb http://archive.ubuntu.com/ubuntu trusty multiverse'
- 'deb-src http://archive.ubuntu.com/ubuntu trusty multiverse'
- 'deb http://archive.ubuntu.com/ubuntu trusty-updates multiverse'
- 'deb-src http://archive.ubuntu.com/ubuntu trusty-updates multiverse'
- 'deb http://archive.ubuntu.com/ubuntu xenial multiverse'
- 'deb-src http://archive.ubuntu.com/ubuntu xenial multiverse'
- 'deb http://archive.ubuntu.com/ubuntu xenial-updates multiverse'
- 'deb-src http://archive.ubuntu.com/ubuntu xenial-updates multiverse'
tags:
- multiverse_repositories
- repositories

- name: libreoffice ppa is enabled
apt_repository: repo='{{ libreoffice_ppa }}'
tags:
- libreoffice_repositories
- repositories

- name: ffmpeg ppa is enabled
apt_repository: repo='{{ ffmpeg_ppa }}'
tags:
- ffmpeg_repositories
- repositories

- name: BigBlueButton repo is enabled
apt_repository: repo={{ item }} state=present
with_items:
- 'deb {{ bbb_apt_repo_url }} bigbluebutton-trusty main'
- 'deb {{ bbb_apt_repo_url }} bigbluebutton-xenial main'
tags:
- bbb_repositories
- repositories
Expand Down