Change vagrant box for FreeBSD

This commit is contained in:
Frederic Guillot
2015-08-24 21:52:37 -04:00
parent 6f7feb5df2
commit b76bd32e95
3 changed files with 15 additions and 6 deletions

5
Vagrantfile vendored
View File

@@ -113,8 +113,9 @@ Vagrant.configure("2") do |config|
end
config.vm.define "freebsd10" do |m|
m.vm.box = "chef/freebsd-10.0"
m.vm.synced_folder ".", "/usr/local/www/apache24/data", type: "rsync", owner: "www", group: "www"
m.vm.box = "freebsd/FreeBSD-10.2-STABLE"
m.vm.base_mac = "080027D14C66"
m.ssh.shell = "sh"
end
config.vm.network :forwarded_port, guest: 80, host: 8001