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 9d89ac1 commit e657d0d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
15 changes: 15 additions & 0 deletions master/install-nine/tasks/main.yml
Expand Up @@ -20,6 +20,21 @@
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
name: "{{ item }}"
with_items: buildbot_master_npm_packages

- name: update pip
pip:
name: pip
Expand Down
8 changes: 8 additions & 0 deletions master/install-nine/vars/main.yml
Expand Up @@ -6,6 +6,14 @@ 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

buildbot_master_pip_packages:
- pyopenssl
- jrnl

0 comments on commit e657d0d

Please sign in to comment.