From cc6e3c85878d2fb813cd5bcd51550cb602841f15 Mon Sep 17 00:00:00 2001 From: Alexander Hosking Date: Fri, 8 Feb 2019 22:09:43 -0500 Subject: [PATCH] Add the Goals host --- ahoskingit/goals/Vagrantfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ahoskingit/goals/Vagrantfile diff --git a/ahoskingit/goals/Vagrantfile b/ahoskingit/goals/Vagrantfile new file mode 100644 index 0000000..f2eef77 --- /dev/null +++ b/ahoskingit/goals/Vagrantfile @@ -0,0 +1,21 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! +VAGRANTFILE_API_VERSION = "2" + +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + + config.vm.box = "geerlingguy/ubuntu1604" + config.vm.hostname = "goals" + playbook = 'django_goals' + client = 'ahoskingit' + iplookup = 'goals' + + config.vm.provider :virtualbox do |vb| + vb.customize ['modifyvm', :id, '--memory', '1024'] + end + + eval(IO.read("../../vagrant.mixin.rb"), binding) + +end