diff options
author | terminaldweller <devi@terminaldweller.com> | 2023-12-30 05:29:13 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2023-12-30 05:29:13 +0000 |
commit | b071c37f8c6157669c8ce024bb9b9d1b7e6387af (patch) | |
tree | 495b3d5efc86520f888480879cb11e5aaabe3e62 /tiny | |
parent | alma9 (diff) | |
download | vagrantboxes-b071c37f8c6157669c8ce024bb9b9d1b7e6387af.tar.gz vagrantboxes-b071c37f8c6157669c8ce024bb9b9d1b7e6387af.zip |
updates
Diffstat (limited to 'tiny')
-rw-r--r-- | tiny/Vagrantfile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/tiny/Vagrantfile b/tiny/Vagrantfile index cc39273..130f9dc 100644 --- a/tiny/Vagrantfile +++ b/tiny/Vagrantfile @@ -26,9 +26,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.vagrant.plugins = ['vagrant-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] + # config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false config.vm.provider 'libvirt' do |libvirt| libvirt.default_prefix = 'tiny-' @@ -44,8 +42,8 @@ Vagrant.configure('2') do |config| libvirt.random model: 'random' end - config.vm.provision 'update-upgrade', type: 'shell', name: 'update-upgrade', inline: <<-SHELL - sudo apk update && sudo apk upgrade - sudo apk add torsocks irssi tmux - SHELL + # config.vm.provision 'update-upgrade', type: 'shell', name: 'update-upgrade', inline: <<-SHELL + # sudo apk update && sudo apk upgrade + # sudo apk add torsocks irssi tmux + # SHELL end |