-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
99 lines (83 loc) · 3.8 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# fix hang after `Waiting for VM to boot. This can take a few minutes.`
# https://github.com/mitchellh/vagrant/issues/455#issuecomment-1740526
config.ssh.max_tries = 250
# If the iv6 directory is present, spin up a VM for this listening on 192.168.50.101.
if File.exists?( File.dirname(__FILE__) + '/iv6' ) then
config.vm.define :iv6 do |iv6|
iv6.vm.hostname = 'ivillage-iv6-devbox'
iv6.vm.network :private_network, ip: "192.168.50.101"
iv6.vm.box = "iv_centos_5.9_x86_64.v1"
iv6.vm.box_url = "https://www.dropbox.com/s/246g93kbbfs3tez/iv_centos_5.9_x86_64.v1.box"
#iv6.vm.network :forwarded_port, guest: 80, host: 8001
iv6.vm.synced_folder 'iv6', "/opt/ivillage/drupal6", :owner => 'www'
iv6.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", 1024]
end
iv6.vm.provision :puppet do |puppet|
puppet.options = '--environment=drupal6'
puppet.manifest_file = 'ivillage-drupal6.pp'
puppet.manifests_path = 'puppet/manifests'
puppet.module_path = 'puppet/modules'
end
end
end
# If the vishnu directory is present, spin up a VM for this listening on 192.168.50.102.
if File.exists?( File.dirname(__FILE__) + '/vishnu' ) then
config.vm.define :vishnu do |vishnu|
vishnu.vm.hostname = 'ivillage-vishnu-devbox'
vishnu.vm.network :private_network, ip: "192.168.50.102"
vishnu.vm.box = "iv_centos_6.0_x86_64.v1"
vishnu.vm.box_url = "https://www.dropbox.com/s/jbmk8ykskhwu1yj/iv_centos_6.0_x86_64.v1.box"
vishnu.vm.synced_folder 'vishnu', "/opt/ivillage/vishnu", :owner => 'www'
vishnu.vm.synced_folder 'iv6', "/opt/ivillage/drupal6", :owner => 'www'
vishnu.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", 1024]
end
vishnu.vm.provision :puppet do |puppet|
puppet.options = '--environment=vishnu'
puppet.manifest_file = 'ivillage-vishnu.pp'
puppet.manifests_path = 'puppet/manifests'
puppet.module_path = 'puppet/modules'
end
end
end
# If the iv7 directory is present, spin up a VM for this listening on 192.168.50.101.
if File.exists?( File.dirname(__FILE__) + '/iv7' ) then
config.vm.define :iv7 do |iv7|
iv7.vm.hostname = 'ivillage-iv7-devbox'
iv7.vm.network :private_network, ip: "192.168.50.103"
iv7.vm.box = "iv_centos_6.0_x86_64.v1"
iv7.vm.box_url = "https://www.dropbox.com/s/246g93kbbfs3tez/iv_centos_5.9_x86_64.v1.box"
#iv7.vm.network :forwarded_port, guest: 80, host: 8001
iv7.vm.synced_folder 'iv7', "/opt/ivillage/drupal7", :owner => 'www'
iv7.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", 1024]
end
iv7.vm.provision :puppet do |puppet|
puppet.options = '--environment=drupal7'
puppet.manifest_file = 'ivillage-drupal7.pp'
puppet.manifests_path = 'puppet/manifests'
puppet.module_path = 'puppet/modules'
end
end
end
# If the mps directory is present, spin up a VM for this listening on 192.168.50.104.
if File.exists?( File.dirname(__FILE__) + '/mps' ) then
config.vm.define :mps do |mps|
mps.vm.hostname = 'ivillage-mps-devbox'
mps.vm.network :private_network, ip: "192.168.50.104"
mps.vm.box = "iv_centos_6.0_x86_64.v1"
mps.vm.box_url = "https://www.dropbox.com/s/jbmk8ykskhwu1yj/iv_centos_6.0_x86_64.v1.box"
mps.vm.synced_folder 'mps', "/opt/ivillage/mps", :owner => 'www'
mps.vm.provision :puppet do |puppet|
puppet.options = '--environment=mps'
puppet.manifest_file = 'ivillage-mps.pp'
puppet.manifests_path = 'puppet/manifests'
puppet.module_path = 'puppet/modules'
end
end
end
end