orchestration.vagrants/ahoskingit/goals/Vagrantfile

22 lines
517 B
Ruby
Raw Normal View History

2019-02-09 03:09:43 +00:00
# -*- 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