diff options
author | William Yeh <william.pjyeh@gmail.com> | 2016-05-09 16:34:32 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2016-05-10 17:17:33 +0800 |
commit | 97d48efeb67f4f7566752625ad3ce233f31985be (patch) | |
tree | 20ce7984d99bf5f6b770fce81384790027723517 /Vagrantfile | |
parent | b314855954aa117b1294056891d16f43a6b1b9d0 (diff) | |
download | docker-ansible-97d48efeb67f4f7566752625ad3ce233f31985be.tar.gz docker-ansible-97d48efeb67f4f7566752625ad3ce233f31985be.tar.zst docker-ansible-97d48efeb67f4f7566752625ad3ce233f31985be.zip |
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
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile index 46458fb..9bb4898 100644 --- a/Vagrantfile +++ b/Vagrantfile | |||
@@ -4,6 +4,7 @@ Vagrant.configure(2) do |config| | |||
4 | config.vm.provision "shell", inline: <<-SHELL | 4 | config.vm.provision "shell", inline: <<-SHELL |
5 | cd /vagrant | 5 | cd /vagrant |
6 | 6 | ||
7 | docker build -t ansible:ubuntu16.04 ubuntu16.04 | ||
7 | docker build -t ansible:ubuntu14.04 ubuntu14.04 | 8 | docker build -t ansible:ubuntu14.04 ubuntu14.04 |
8 | docker build -t ansible:ubuntu12.04 ubuntu12.04 | 9 | docker build -t ansible:ubuntu12.04 ubuntu12.04 |
9 | docker build -t ansible:debian8 debian8 | 10 | docker build -t ansible:debian8 debian8 |
@@ -12,6 +13,7 @@ Vagrant.configure(2) do |config| | |||
12 | docker build -t ansible:centos6 centos6 | 13 | docker build -t ansible:centos6 centos6 |
13 | docker build -t ansible:alpine3 alpine3 | 14 | docker build -t ansible:alpine3 alpine3 |
14 | 15 | ||
16 | docker build -t ansible:ubuntu16.04-onbuild ubuntu16.04-onbuild | ||
15 | docker build -t ansible:ubuntu14.04-onbuild ubuntu14.04-onbuild | 17 | docker build -t ansible:ubuntu14.04-onbuild ubuntu14.04-onbuild |
16 | docker build -t ansible:ubuntu12.04-onbuild ubuntu12.04-onbuild | 18 | docker build -t ansible:ubuntu12.04-onbuild ubuntu12.04-onbuild |
17 | docker build -t ansible:debian8-onbuild debian8-onbuild | 19 | docker build -t ansible:debian8-onbuild debian8-onbuild |