@@ -39,48 +39,5 @@ Vagrant.configure(2) do |config|
3939 ldap . vm . provision "shell" , path : "scripts/centos/essentials.sh" , privileged : true
4040 ldap . vm . provision "shell" , path : "scripts/centos/ldap/install.sh" , privileged : true
4141 end
42-
43- config . vm . define "freebsd" , autostart : false do |bsd |
44- bsd . vm . network "private_network" , ip : "192.168.112.30"
45-
46- bsd . vm . box = "geoffgarside/freebsd-10.0"
47-
48- bsd . vm . provision "shell" , path : "scripts/freebsd/essentials.sh" , privileged : true
49- bsd . vm . provision "file" , source : "/tmp/PHONGO-SERVERS.json" , destination : "/tmp/PHONGO-SERVERS.json"
50- bsd . vm . provision "file" , source : "scripts/configs/.gdbinit" , destination : "/home/vagrant/.gdbinit"
51- bsd . vm . provision "shell" , path : "scripts/freebsd/phongo.sh" , privileged : true
52- bsd . vm . synced_folder "." , "/phongo" , :nfs => true , id : "vagrant-root"
53- end
54-
55- config . vm . define "precise64" do |linux |
56- linux . vm . network "private_network" , ip : "192.168.112.40"
57-
58- linux . vm . box = "http://files.vagrantup.com/precise64.box"
59- linux . vm . provider "vmware_workstation" do |vmware , override |
60- override . vm . box_url = 'http://files.vagrantup.com/precise64_vmware.box'
61- override . vm . provision "shell" , path : "scripts/vmware/kernel.sh" , privileged : true
62- end
63-
64- linux . vm . provision "shell" , path : "scripts/ubuntu/essentials.sh" , privileged : true
65- linux . vm . provision "file" , source : "/tmp/PHONGO-SERVERS.json" , destination : "/tmp/PHONGO-SERVERS.json"
66- linux . vm . provision "file" , source : "scripts/configs/.gdbinit" , destination : "/home/vagrant/.gdbinit"
67- linux . vm . provision "shell" , path : "scripts/ubuntu/phongo.sh" , privileged : true
68- end
69-
70- config . vm . define "precise32" do |linux |
71- linux . vm . network "private_network" , ip : "192.168.112.50"
72-
73- linux . vm . box = "bjori/precise32"
74- linux . vm . provider "vmware_workstation" do |vmware , override |
75- override . vm . box_url = "bjori/precise32"
76- override . vm . provision "shell" , path : "scripts/vmware/kernel.sh" , privileged : true
77- end
78-
79- linux . vm . provision "shell" , path : "scripts/ubuntu/essentials.sh" , privileged : true
80- linux . vm . provision "file" , source : "/tmp/PHONGO-SERVERS.json" , destination : "/tmp/PHONGO-SERVERS.json"
81- linux . vm . provision "file" , source : "scripts/configs/.gdbinit" , destination : "/home/vagrant/.gdbinit"
82- linux . vm . provision "shell" , path : "scripts/ubuntu/phongo.sh" , privileged : true
83- end
84-
8542end
8643
0 commit comments