Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Xenial support #2

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions master/install-nine/tasks/main.yml
Expand Up @@ -7,6 +7,14 @@
cache_valid_time: 86400
with_items: "{{ buildbot_master_apt_packages }}"

- name: install Xenial APT packages
apt:
name: libssl-dev
update_cache: yes
state: latest
cache_valid_time: 86400
when: ansible_distribution_release == 'xenial'

- name: update pip
pip:
name: pip
Expand Down
1 change: 1 addition & 0 deletions master/install-nine/vars/main.yml
Expand Up @@ -9,3 +9,4 @@ buildbot_master_apt_packages:
buildbot_master_pip_packages:
- pyopenssl
- jrnl
- pyyaml