Compare commits
6 Commits
8bb10efdf6
...
cbdbfdb9df
Author | SHA1 | Date | |
---|---|---|---|
cbdbfdb9df | |||
cc6e3c8587 | |||
09e3c78903 | |||
e80698b810 | |||
5094680635 | |||
e01d3047ac |
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.vagrant
|
||||||
|
*.log
|
||||||
|
*~
|
@ -1,17 +1,13 @@
|
|||||||
---
|
---
|
||||||
vagrants:
|
vagrants:
|
||||||
"ubuntu/trusty64": "ubuntu/trusty64"
|
"ubuntu/trusty64": "ubuntu/trusty64"
|
||||||
<<<<<<< HEAD
|
|
||||||
"ubuntu/xenial64": "ubuntu/xenial64"
|
"ubuntu/xenial64": "ubuntu/xenial64"
|
||||||
"boxcutter/ubuntu1604": "boxcutter/ubuntu1604"
|
"boxcutter/ubuntu1604": "boxcutter/ubuntu1604"
|
||||||
|
|
||||||
=======
|
|
||||||
"boxcutter/ubuntu1604": "boxcutter/ubuntu1604"
|
|
||||||
|
|
||||||
>>>>>>> dfcfe37cf523476c0bd27c2a0d6e75ab9189654d
|
|
||||||
hosts:
|
hosts:
|
||||||
docker: 10.200.200.20
|
docker: 10.200.200.20
|
||||||
nextcloud: 10.200.200.2
|
nextcloud: 10.200.200.2
|
||||||
grafana: 10.200.200.3
|
grafana: 10.200.200.3
|
||||||
proxy-home: 10.200.200.4
|
proxy-home: 10.200.200.4
|
||||||
dns: 10.200.200.5
|
dns: 10.200.200.5
|
||||||
|
goals: 10.200.200.7
|
||||||
|
jpscontracting: 10.200.200.8
|
||||||
|
21
ahoskingit/goals/Vagrantfile
vendored
Normal file
21
ahoskingit/goals/Vagrantfile
vendored
Normal 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
20
ahoskingit/jps_test/Vagrantfile
vendored
Normal 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
8
anydesk/config.yaml
Normal 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
24
anydesk/relay/Vagrantfile
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user