diff options
author | terminaldweller <thabogre@gmail.com> | 2022-07-23 14:26:18 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-07-23 14:26:18 +0000 |
commit | 3bc0f9cd44cb1dc52defb53d461588db298211b9 (patch) | |
tree | 38f325441023b6d76c48c5f3b6bb5f6fb1b3adde /vagrant/disposable/Vagrantfile | |
parent | secrets (diff) | |
download | scripts-3bc0f9cd44cb1dc52defb53d461588db298211b9.tar.gz scripts-3bc0f9cd44cb1dc52defb53d461588db298211b9.zip |
updates
Diffstat (limited to '')
-rw-r--r-- | vagrant/disposable/Vagrantfile | 11 |
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 |