From 3fd3615b3281a96a22a163738a79b76ef76fb8aa Mon Sep 17 00:00:00 2001 From: Bernhard Gschaider Date: Thu, 13 Nov 2014 23:27:47 +0100 Subject: [PATCH] Trying different boxes for FreeBSD 10. Still not working. Reason may be local: the directory of the box is on an NFS-share itself and therefore may not be exportable --- vagrantSandbox/Vagrantfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vagrantSandbox/Vagrantfile b/vagrantSandbox/Vagrantfile index 1b0403244..3aa067b38 100644 --- a/vagrantSandbox/Vagrantfile +++ b/vagrantSandbox/Vagrantfile @@ -112,13 +112,17 @@ Vagrant.configure("2") do |config| # legacy/experimental config.vm.define :freebsd10 do |freebsd10| - freebsd10.vm.box = "freebsd10" + freebsd10.vm.box = "chef/freebsd-10.0" + # freebsd10.vm.box = "arkadi/freebsd-10.0-i386" + freebsd10.vm.box_check_update = true + # freebsd10.vm.box = "freebsd10" # freebsd10.vm.box_url = "https://wunki.org/files/freebsd-10.0-amd64-wunki.box" - freebsd10.vm.box_url = "http://iris.hosting.lv/freebsd-10.0-i386.box" +# freebsd10.vm.box_url = "http://iris.hosting.lv/freebsd-10.0-i386.box" freebsd10.vm.provision :shell do |s| s.args = "freebsd10" s.path = "initFreeBSDScript.sh" end + freebsd10.vm.network :private_network, ip: "10.0.0.2" # configure the NICs