aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2017-12-04 21:48:02 +0100
committerHarald Eilertsen <haraldei@anduin.net>2017-12-04 21:48:02 +0100
commitf922cd5dafa02a465a76464a3fe8d7552ae3bb59 (patch)
tree59ec596947eac1594e668ab011a19bb0a5012aa2 /Vagrantfile
parent486234e88955306e67dbdfca4027392328f81c56 (diff)
downloadhmnoweb-f922cd5dafa02a465a76464a3fe8d7552ae3bb59.tar.gz
hmnoweb-f922cd5dafa02a465a76464a3fe8d7552ae3bb59.tar.bz2
hmnoweb-f922cd5dafa02a465a76464a3fe8d7552ae3bb59.zip
Reboot vagrant integration.
Use FreeBSD 10.3, and a setup more similar to what we have on the production server. Just installing basic dependensies for now.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index b685bb5..5da39ab 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -2,8 +2,8 @@
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
- config.vm.box = "vagrant-archlinux-2013-8"
- config.vm.box_url = "https://googledrive.com/host/0B_BLFE4aPn5zUVpyaHdLanVnMTg/vagrant-archlinux-2013-8.box"
- config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
+ config.vm.box = "bento/freebsd-10.3"
+ config.vm.guest = :freebsd
config.vm.network :forwarded_port, host: 4567, guest: 80
+ config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
end