Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jpic committed Aug 8, 2016
1 parent 81777a7 commit 2105d16
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
9 changes: 9 additions & 0 deletions master/install-nine/tasks/main.yml
Expand Up @@ -25,6 +25,15 @@
cache_valid_time: 86400
with_items: buildbot_master_apt_packages

- name: install Xenial APT packages
apt:
name: "{{ item }}"
update_cache: yes
state: latest
cache_valid_time: 86400
with_items: buildbot_master_apt_packages_xenial
when: ansible_distribution_release == 'xenial'

- name: Install NPM packages
npm:
global: yes
Expand Down
5 changes: 5 additions & 0 deletions master/install-nine/vars/main.yml
Expand Up @@ -10,6 +10,11 @@ buildbot_master_apt_packages:
- python-dev # required for compiling
- libffi-dev # pyopenssl

buildbot_master_apt_packages_xenial:
# for phantom
- libfreetype6
- libfontconfig1

buildbot_master_npm_packages:
- gulp

Expand Down

0 comments on commit 2105d16

Please sign in to comment.