aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2017-12-16 14:21:42 +0100
committerHarald Eilertsen <haraldei@anduin.net>2017-12-16 14:21:42 +0100
commit3c4b7f712d61a9006f90960273fdefcb0c7ca371 (patch)
treeba053bdf09fc43123942af68e1c4b5cb5409b780 /Vagrantfile
parent486234e88955306e67dbdfca4027392328f81c56 (diff)
parent515b798b48c799df74f4132a7837faeaba141a8a (diff)
downloadhmnoweb-3c4b7f712d61a9006f90960273fdefcb0c7ca371.tar.gz
hmnoweb-3c4b7f712d61a9006f90960273fdefcb0c7ca371.tar.bz2
hmnoweb-3c4b7f712d61a9006f90960273fdefcb0c7ca371.zip
Merge branch 'reboot-vagrant'
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index b685bb5..d24ce9d 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -1,9 +1,11 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
+# :mode=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.box = "bento/freebsd-10.3"
+ config.vm.guest = :freebsd
+ config.vm.network :forwarded_port, host: 3000, guest: 3000
config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
- config.vm.network :forwarded_port, host: 4567, guest: 80
+ config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: %w[.git/ vendor/bundle/]
end