aboutsummaryrefslogtreecommitdiffstats
path: root/alma9
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2023-11-10 03:28:13 +0000
committerterminaldweller <devi@terminaldweller.com>2023-11-10 03:28:13 +0000
commite4c89452f7413c485bcda54625406a922a0c23c5 (patch)
treed37bc8d4a9590ab83bd47fcfbdbc37a8adbb2fd1 /alma9
parentvpn vm (diff)
downloadvagrantboxes-e4c89452f7413c485bcda54625406a922a0c23c5.tar.gz
vagrantboxes-e4c89452f7413c485bcda54625406a922a0c23c5.zip
alma9
Diffstat (limited to 'alma9')
-rw-r--r--alma9/Vagrantfile42
1 files changed, 42 insertions, 0 deletions
diff --git a/alma9/Vagrantfile b/alma9/Vagrantfile
new file mode 100644
index 0000000..1ff5ea2
--- /dev/null
+++ b/alma9/Vagrantfile
@@ -0,0 +1,42 @@
+# vi: set ft=ruby :
+# frozen_string_literal: true
+
+ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt'
+Vagrant.require_version '>= 2.2.6'
+Vagrant.configure('2') do |config|
+ config.vm.box = 'almalinux/9'
+ config.vm.box_version = '9.2.20230513'
+ config.vm.box_check_update = false
+ config.vm.hostname = 'virt-alma9'
+
+ # 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: 3, nfs_udp: false
+
+ config.vm.provider 'libvirt' do |libvirt|
+ libvirt.default_prefix = 'alma9-'
+ libvirt.driver = 'kvm'
+ libvirt.memory = '512'
+ libvirt.cpus = 2
+ 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 'i2p-install', type: 'shell', name: 'i2p-install', inline: <<-SHELL
+ # sudo apt update && sudo apt upgrade -y
+ # SHELL
+end