From b071c37f8c6157669c8ce024bb9b9d1b7e6387af Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Sat, 30 Dec 2023 00:29:13 -0500 Subject: updates --- ephemeral/Vagrantfile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'ephemeral') diff --git a/ephemeral/Vagrantfile b/ephemeral/Vagrantfile index f7a5f84..cb46090 100644 --- a/ephemeral/Vagrantfile +++ b/ephemeral/Vagrantfile @@ -5,15 +5,16 @@ ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' # Vagrant::DEFAULT_SERVER_URL.replace('https://vagrantcloud.com') Vagrant.require_version '>= 2.2.6' Vagrant.configure('2') do |config| - config.vm.box = 'generic/alpine316' - config.vm.box_version = '4.0.2' + config.vm.box = 'generic/alpine317' + # config.vm.box_version = '4.0.2' + config.vm.box_version = '4.2.14' config.vm.box_check_update = false config.vm.hostname = 'virt-ephemeral' - 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 + # 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 @@ -23,12 +24,12 @@ Vagrant.configure('2') do |config| # timeouts config.vm.boot_timeout = 300 config.vm.graceful_halt_timeout = 60 - config.ssh.connect_timeout = 15 + config.ssh.connect_timeout = 30 # 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' } }] + # config.vagrant.plugins = ['vagrant-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] config.vm.provider 'libvirt' do |libvirt| libvirt.storage_pool_name = 'ramdisk' -- cgit v1.2.3