forked from mydumper/mydumper_builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
295 lines (272 loc) · 8.6 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
# -*- mode: ruby -*-
# vi: set ft=ruby :
compiling_version="testing"
if ! ENV['compiling_version'].nil?
compiling_version=ENV['compiling_version']
end
Vagrant.configure(2) do |config|
# Prevent VirtualBox from enable the COM port which causes issues on some OS.
config.vm.provider "virtualbox" do |vb|
vb.customize [ "modifyvm", :id, "--uart1", "off" ]
vb.customize [ "modifyvm", :id, "--uart2", "off" ]
vb.customize [ "modifyvm", :id, "--uart3", "off" ]
vb.customize [ "modifyvm", :id, "--uart4", "off" ]
end
# I decided not support el6 anymore until I have time to sort the issues out
# config.vm.define :el6 do |el6|
# el6.vm.box = "centos/6"
# el6.vm.provision :ansible do |ansible|
# ansible.playbook = "compile_mydumper_rhel.yml"
# end
# el6.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
# v.customize ["modifyvm", :id, "--audio", "none"]
# end
# end
config.vm.define :el7 do |el7|
el7.vm.box = "centos/7"
el7.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_rhel7.yml"
ansible.extra_vars = {
version: compiling_version
}
end
el7.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
config.vm.define :el8 do |el8|
el8.vm.box = "centos/8"
el8.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_rhel8.yml"
ansible.extra_vars = {
version: compiling_version
}
end
el8.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Debian 11
# config.vm.define :bullseye do |bullseye|
# bullseye.vm.box = "debian/bullseye64"
# bullseye.vm.provision :ansible do |ansible|
# ansible.playbook = "compile_mydumper_debian.yml"
# end
# end
# Debian 10
config.vm.define :buster8 do |buster8|
buster8.vm.box = "debian/buster64"
buster8.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian_8.yml"
ansible.extra_vars = {
version: compiling_version
}
end
buster8.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Debian 10
config.vm.define :buster do |buster|
buster.vm.box = "debian/buster64"
buster.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian.yml"
ansible.extra_vars = {
version: compiling_version
}
end
buster.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Debian 9
config.vm.define :stretch do |stretch|
stretch.vm.box = "debian/stretch64"
stretch.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian.yml"
ansible.extra_vars = {
version: compiling_version
}
end
stretch.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Debian 9
config.vm.define :stretch8 do |stretch8|
stretch8.vm.box = "debian/stretch64"
stretch8.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian_8.yml"
ansible.extra_vars = {
version: compiling_version
}
end
stretch8.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Debian 8
config.vm.define :jessie do |jessie|
jessie.vm.box = "debian/jessie64"
jessie.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian.yml"
ansible.extra_vars = {
version: compiling_version
}
end
jessie.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Debian 8
config.vm.define :jessie8 do |jessie8|
jessie8.vm.box = "debian/jessie64"
jessie8.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian_8.yml"
ansible.extra_vars = {
version: compiling_version
}
end
jessie8.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Ubuntu 14.04
config.vm.define :trusty do |trusty|
trusty.vm.box = "ubuntu/trusty64"
trusty.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian.yml"
ansible.extra_vars = {
version: compiling_version
}
end
trusty.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Ubuntu 16.04
config.vm.define :xenial do |xenial|
xenial.vm.box = "ubuntu/xenial64"
xenial.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian.yml"
ansible.extra_vars = {
version: compiling_version
}
end
xenial.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Ubuntu 16.04
config.vm.define :xenial8 do |xenial8|
xenial8.vm.box = "ubuntu/xenial64"
xenial8.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian_8.yml"
ansible.extra_vars = {
version: compiling_version
}
end
xenial8.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Ubuntu 18.04
config.vm.define :bionic do |bionic|
bionic.vm.box = "ubuntu/bionic64"
bionic.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian.yml"
ansible.extra_vars = {
version: compiling_version
}
end
bionic.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Ubuntu 18.04
config.vm.define :bionic8 do |bionic8|
bionic8.vm.box = "ubuntu/bionic64"
bionic8.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian_8.yml"
ansible.extra_vars = {
version: compiling_version
}
end
bionic8.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Ubuntu 20.04
config.vm.define :focal do |focal|
focal.vm.box = "ubuntu/focal64"
focal.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian.yml"
ansible.extra_vars = {
version: compiling_version
}
end
focal.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Ubuntu 20.04
config.vm.define :focal8 do |focal8|
focal8.vm.box = "ubuntu/focal64"
focal8.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_debian_8.yml"
ansible.extra_vars = {
version: compiling_version
}
end
focal8.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
# Gentoo
config.vm.define :gentoo do |gentoo|
gentoo.vm.box = "generic/gentoo"
gentoo.vm.provision :ansible do |ansible|
ansible.playbook = "compile_mydumper_gentoo.yml"
ansible.extra_vars = {
version: compiling_version
}
end
gentoo.vm.provider "virtualbox" do |v|
# Prevent VirtualBox from interfering with host audio stack
v.customize ["modifyvm", :id, "--audio", "none"]
v.memory = 1024
end
end
config.vm.synced_folder '.', '/vagrant', disabled: true
end