forked from arkime/arkime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
42 lines (31 loc) · 988 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
35
36
37
38
39
40
41
42
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--memory", "1500"]
end
config.vm.define "ubuntu-12.04" do |ubuntu1204|
ubuntu1204.vm.box = "chef/ubuntu-12.04"
end
config.vm.define "ubuntu-14.04" do |ubuntu1404|
ubuntu1404.vm.box = "chef/ubuntu-14.04"
end
config.vm.define "centos-5" do |centos5|
centos5.vm.box = "chef/centos-5.11"
end
config.vm.define "centos-6" do |centos6|
centos6.vm.box = "chef/centos-6.6"
end
config.vm.define "centos-7" do |centos7|
centos7.vm.box = "chef/centos-7.0"
end
config.vm.define "freebsd-9" do |freebsd9|
freebsd9.vm.box = "chef/freebsd-9.2"
freebsd9.ssh.shell = "sh"
config.vm.synced_folder ".", "/vagrant", disabled: true
end
config.vm.define "freebsd-10" do |freebsd10|
freebsd10.vm.box = "chef/freebsd-10.0"
end
config.vm.provision "shell", path:"node.test.sh"
end