diff options
author | terminaldweller <thabogre@gmail.com> | 2022-06-29 17:42:52 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-06-29 17:42:52 +0000 |
commit | 8650b579ef05059c78798d498c84f377eec35547 (patch) | |
tree | e107d43a8eaed9cdeaece296e5d0099f118ee20a /tiny | |
parent | ubuntu18 and ubuntu20 (diff) | |
download | vagrantboxes-8650b579ef05059c78798d498c84f377eec35547.tar.gz vagrantboxes-8650b579ef05059c78798d498c84f377eec35547.zip |
tiny updates
Diffstat (limited to 'tiny')
-rw-r--r-- | tiny/Vagrantfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tiny/Vagrantfile b/tiny/Vagrantfile index 6bb3dc0..c5215df 100644 --- a/tiny/Vagrantfile +++ b/tiny/Vagrantfile @@ -5,14 +5,14 @@ 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/alpine315' - config.vm.box_version = '3.6.14' + config.vm.box = 'generic/alpine316' + config.vm.box_version = '4.0.2' config.vm.box_check_update = false config.vm.hostname = 'virt-tiny' if Vagrant.has_plugin?('vagrant-proxyconf') - config.proxy.http = 'socks5://192.168.1.103:9050' - config.proxy.https = 'socks5://192.168.1.103:9050' + config.proxy.http = 'socks5://192.168.1.103:9995' + config.proxy.https = 'socks5://192.168.1.103:9995' end # ssh |