Add AnyDesk
This commit is contained in:
parent
e80698b810
commit
09e3c78903
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