Compare commits

...

6 Commits

6 changed files with 78 additions and 6 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.vagrant
*.log
*~

View File

@ -1,17 +1,13 @@
---
vagrants:
"ubuntu/trusty64": "ubuntu/trusty64"
<<<<<<< HEAD
"ubuntu/xenial64": "ubuntu/xenial64"
"boxcutter/ubuntu1604": "boxcutter/ubuntu1604"
=======
"boxcutter/ubuntu1604": "boxcutter/ubuntu1604"
>>>>>>> dfcfe37cf523476c0bd27c2a0d6e75ab9189654d
hosts:
docker: 10.200.200.20
nextcloud: 10.200.200.2
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

21
ahoskingit/goals/Vagrantfile vendored Normal file
View File

@ -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

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

8
anydesk/config.yaml Normal file
View File

@ -0,0 +1,8 @@
---
vagrants:
"debian/jessie64": "debian/jessie64"
"debian/stretch64": "debian/stretch64"
hosts:
relay: 10.17.17.2

24
anydesk/relay/Vagrantfile vendored Normal file
View File

@ -0,0 +1,24 @@
# -*- 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|
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
end
config.vm.box = "debian/stretch64"
config.vm.hostname = "relay"
playbook = 'relay'
client = 'anydesk'
iplookup = 'relay'
config.vm.provider :virtualbox do |vb|
vb.customize ['modifyvm', :id, '--memory', '1024']
end
eval(IO.read("../../vagrant.mixin.rb"), binding)
end