From 97d48efeb67f4f7566752625ad3ce233f31985be Mon Sep 17 00:00:00 2001 From: William Yeh Date: Mon, 9 May 2016 16:34:32 +0800 Subject: Add: support for Ubuntu 16.04 LTS (Xenial). Fix: 1. OS-level packages `libffi-dev` and `libssl-dev`/`openssl-dev` should be installed explicitly since Ansible 2.0.2.0(???). 2. Python package cffi should be installed explicitly since Ansible 2.0.2.0(???). 3. add '--fix-missing' for apt. @see https://github.com/boxcutter/ubuntu/issues/62 @see https://github.com/pyca/cryptography/issues/2280 --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Vagrantfile') diff --git a/Vagrantfile b/Vagrantfile index 46458fb..9bb4898 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,6 +4,7 @@ Vagrant.configure(2) do |config| config.vm.provision "shell", inline: <<-SHELL cd /vagrant + docker build -t ansible:ubuntu16.04 ubuntu16.04 docker build -t ansible:ubuntu14.04 ubuntu14.04 docker build -t ansible:ubuntu12.04 ubuntu12.04 docker build -t ansible:debian8 debian8 @@ -12,6 +13,7 @@ Vagrant.configure(2) do |config| docker build -t ansible:centos6 centos6 docker build -t ansible:alpine3 alpine3 + docker build -t ansible:ubuntu16.04-onbuild ubuntu16.04-onbuild docker build -t ansible:ubuntu14.04-onbuild ubuntu14.04-onbuild docker build -t ansible:ubuntu12.04-onbuild ubuntu12.04-onbuild docker build -t ansible:debian8-onbuild debian8-onbuild -- cgit v1.2.3