We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0095e90 commit 88f4142Copy full SHA for 88f4142
Vagrantfile
@@ -0,0 +1,10 @@
1
+# -*- mode: ruby -*-
2
+# vi: set ft=ruby :
3
+
4
+Vagrant.configure(2) do |config|
5
+ config.vm.box = "ubuntu/trusty32"
6
7
+ config.vm.provision "ansible" do |ansible|
8
+ ansible.playbook = "ansible.yml"
9
+ end
10
+end
ansible.cfg
@@ -0,0 +1,2 @@
+[defaults]
+roles_path = ..
ansible.yml
@@ -0,0 +1,8 @@
+---
+- hosts: all
+ roles:
+ - ansible-compile-python
+ vars:
+ - python_26: true
+ - pillow: true
+ - lxml: true
0 commit comments