aboutsummaryrefslogtreecommitdiffstats
path: root/disposable
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-04-27 15:30:34 +0000
committerterminaldweller <devi@terminaldweller.com>2024-04-27 15:30:34 +0000
commit1c28f3df429eb922497e0b2126e0112c72ed990d (patch)
tree1f43c98189f2afa6b2809b09d115565a2c9af6de /disposable
parentupdate (diff)
downloadvagrantboxes-1c28f3df429eb922497e0b2126e0112c72ed990d.tar.gz
vagrantboxes-1c28f3df429eb922497e0b2126e0112c72ed990d.zip
disposables, first attempt
Diffstat (limited to 'disposable')
-rw-r--r--disposable/Vagrantfile45
1 files changed, 45 insertions, 0 deletions
diff --git a/disposable/Vagrantfile b/disposable/Vagrantfile
new file mode 100644
index 0000000..4a1153f
--- /dev/null
+++ b/disposable/Vagrantfile
@@ -0,0 +1,45 @@
+# vi: set ft=ruby :
+# frozen_string_literal: true
+
+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/alpine319'
+ config.vm.box_version = '4.3.12'
+ config.vm.box_check_update = false
+ config.vm.hostname = 'virt-disposable'
+
+ # ssh
+ config.ssh.insert_key = true
+ config.ssh.keep_alive = true
+ config.ssh.keys_only = true
+
+ # timeouts
+ config.vm.boot_timeout = 300
+ config.vm.graceful_halt_timeout = 60
+ config.ssh.connect_timeout = 15
+
+ # shares
+ # config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false
+
+ config.vm.provider 'libvirt' do |libvirt|
+ libvirt.storage_pool_name = 'ramdisk'
+ libvirt.default_prefix = 'disposable-'
+ libvirt.driver = 'kvm'
+ libvirt.memory = '2048'
+ libvirt.cpus = 6
+ libvirt.sound_type = nil
+ libvirt.qemuargs value: '-nographic'
+ libvirt.qemuargs value: '-nodefaults'
+ libvirt.qemuargs value: '-no-user-config'
+ libvirt.qemuargs value: '-serial'
+ libvirt.qemuargs value: 'pty'
+ 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
+end