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
|
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
new_plugin_installed = false
unless Vagrant.has_plugin?('vagrant-vbguest')
plugin = 'vagrant-vbguest'
puts "Missing plugin #{plugin}, installing..."
`vagrant plugin install #{plugin}`
new_plugin_installed = true
end
exec "vagrant #{ARGV.join' '}" if new_plugin_installed
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# 1024 mb ram is required on the source vm so that all tests can run fine
# 512 mb ram is probably enough for the deb vm
# Please verify the sha512 sum of the downloaded box before importing it into vagrant !
# see https://leap.se/en/docs/platform/details/development#Verify.vagrantbox.download
# for details
config.vm.box = "leap-wheezy"
config.vbguest.auto_update = false
config.vm.define "source", primary: true do |source|
source.vm.provider :virtualbox do |v, override|
override.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box"
end
source.vm.provider "libvirt" do |v, override|
override.vm.box_url = "https://downloads.leap.se/platform/vagrant/libvirt/leap-wheezy.box"
end
source.vm.provision "puppet" do |puppet|
puppet.manifests_path = "provisioning/manifests"
puppet.module_path = "provisioning/modules"
puppet.manifest_file = "source.pp"
end
end
config.vm.define "deb", autostart: false do |deb|
# until https://github.com/pixelated-project/pixelated-user-agent/issues/226 is not fixed,
# we depend on a debian testing box
config.vm.box = "leap-wheezy"
deb.vm.provider "virtualbox" do |v, override|
override.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box"
end
deb.vm.provider "libvirt" do |v, override|
override.vm.box_url = "https://downloads.leap.se/platform/vagrant/libvirt/leap-wheezy.box"
end
deb.vm.provision "puppet" do |puppet|
puppet.manifests_path = "provisioning/manifests"
puppet.module_path = "provisioning/modules"
puppet.manifest_file = "deb.pp"
end
end
config.vm.define "hackday", autostart: false do |hackday|
config.vm.box = "hackday-pixelated-user-agent"
hackday.vm.provision "puppet" do |puppet|
puppet.manifests_path = "provisioning/manifests"
puppet.module_path = "provisioning/modules"
puppet.manifest_file = "hackday.pp"
end
end
if /mswin|mingw/ =~ RUBY_PLATFORM
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/"
end
config.vm.provider "libvirt" do |v, override|
v.memory = 1024
override.vm.network :forwarded_port, guest: 3333, guest_ip: '127.0.0.1', host: 3333
end
config.vm.provider "virtualbox" do |v, override|
v.memory = 1024
override.vm.network :forwarded_port, guest: 3333, host: 3333 # do NOT add host_ip in this line. It is not necessary
end
end
|