From 895d1ae9e5d0260b3d55b352deab7be589d24a99 Mon Sep 17 00:00:00 2001 From: Folker Bernitt Date: Thu, 22 Jan 2015 17:42:17 +0100 Subject: Issue #244: Preparations for hackday vagrant image. - To use it, do these steps: build the box: vagrant destroy && vagrant up source vagrant package --output hackday-user-agent.box source use the box: vagrant box add hackday-user-agent hackday-user-agent.box vagrant up hackday vagrant ssh hackday Scripts will be provided with next commit. --- Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Vagrantfile') diff --git a/Vagrantfile b/Vagrantfile index c2bf477b..a8fcc62d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -47,6 +47,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end + config.vm.define "hackday", autostart: false do |hackday| + config.vm.box = "hackday-user-agent" + end + config.vm.network :forwarded_port, guest: 3333, host: 3333 config.vm.provider "virtualbox" do |v| -- cgit v1.2.3