aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/disposable/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vagrant/disposable/Vagrantfile11
1 files changed, 8 insertions, 3 deletions
diff --git a/vagrant/disposable/Vagrantfile b/vagrant/disposable/Vagrantfile
index 3b0c3ac..ec58057 100644
--- a/vagrant/disposable/Vagrantfile
+++ b/vagrant/disposable/Vagrantfile
@@ -9,6 +9,11 @@ Vagrant.configure('2') do |config|
config.vm.box_check_update = false
config.vm.hostname = 'virt-disposable-deb11'
+ # if Vagrant.has_plugin?('vagrant-proxyconf')
+ # config.proxy.http = 'socks5://192.168.1.103:9995'
+ # config.proxy.https = 'socks5://192.168.1.103:9995'
+ # end
+
# ssh
config.ssh.insert_key = true
config.ssh.keep_alive = true
@@ -20,7 +25,7 @@ Vagrant.configure('2') do |config|
config.ssh.connect_timeout = 15
# shares
- config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false
+ # config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false
config.vagrant.plugins = ['vagrant-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }]
@@ -33,8 +38,8 @@ Vagrant.configure('2') do |config|
libvirt.qemuargs value: '-nographic'
libvirt.qemuargs value: '-nodefaults'
libvirt.qemuargs value: '-no-user-config'
- libvirt.qemuargs value: '-serial'
- libvirt.qemuargs value: 'telnet::4321,server,nowait'
+ # libvirt.qemuargs value: '-serial'
+ # libvirt.qemuargs value: 'telnet::4321,server,nowait'
libvirt.random model: 'random'
end