Add JPscontracting

This commit is contained in:
Alexander Hosking 2019-02-22 23:59:12 -05:00
parent cc6e3c8587
commit cbdbfdb9df
2 changed files with 22 additions and 0 deletions

View File

@ -9,3 +9,5 @@ hosts:
grafana: 10.200.200.3
proxy-home: 10.200.200.4
dns: 10.200.200.5
goals: 10.200.200.7
jpscontracting: 10.200.200.8

20
ahoskingit/jps_test/Vagrantfile vendored Normal file
View File

@ -0,0 +1,20 @@
# -*- 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 = "jpscontracting"
playbook = 'jpscontracting'
client = 'ahoskingit'
config.vm.provider :virtualbox do |vb|
vb.customize ['modifyvm', :id, '--memory', '1024']
end
eval(IO.read("../../vagrant.mixin.rb"), binding)
end