Skip to content

Commit 88f4142

Browse files
committed
Add example Vagrantfile
1 parent 0095e90 commit 88f4142

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

Vagrantfile

+10
Original file line numberDiff line numberDiff line change
@@ -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

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[defaults]
2+
roles_path = ..

ansible.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
- hosts: all
3+
roles:
4+
- ansible-compile-python
5+
vars:
6+
- python_26: true
7+
- pillow: true
8+
- lxml: true

0 commit comments

Comments
 (0)