forked from 24pullrequests/24pullrequests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
34 lines (29 loc) · 922 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
def which(cmd)
exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
exts.each { |ext|
exe = File.join(path, "#{cmd}#{ext}")
return exe if File.executable? exe
}
end
return nil
end
Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |v|
v.name = "TFPullRequests"
v.customize ["modifyvm", :id, "--memory", 1024]
end
config.vm.box = "ubuntu/trusty64"
config.vm.network :private_network, ip: "192.168.12.34"
config.ssh.forward_agent = true
if which('ansible-playbook')
config.vm.provision "ansible" do |ansible|
ansible.playbook = "ansible/playbook.yml"
ansible.inventory_path = "ansible/inventories/dev"
ansible.limit = 'all'
end
else
config.vm.provision :shell, path: "ansible/windows.sh"
end
config.vm.synced_folder "./", "/vagrant", type: "nfs"
end