aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-01-13 03:39:54 +0000
committerterminaldweller <devi@terminaldweller.com>2024-01-13 03:39:54 +0000
commitaae0b2da9ec8b04d20829b2167a8c855ee5eb073 (patch)
tree2b6d7193e14398a8d450381ee1a5367f6af83ead
parentdeb12 (diff)
downloadvagrantboxes-aae0b2da9ec8b04d20829b2167a8c855ee5eb073.tar.gz
vagrantboxes-aae0b2da9ec8b04d20829b2167a8c855ee5eb073.zip
alpine
-rw-r--r--fort/Vagrantfile40
1 files changed, 40 insertions, 0 deletions
diff --git a/fort/Vagrantfile b/fort/Vagrantfile
new file mode 100644
index 0000000..3a05b08
--- /dev/null
+++ b/fort/Vagrantfile
@@ -0,0 +1,40 @@
+# 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 = 'generic/alpine319'
+ config.vm.box_version = '4.3.10'
+ config.vm.box_check_update = false
+ config.vm.hostname = 'virt-fort'
+
+ # 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 = 30
+
+ # shares
+ # config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false
+
+
+ config.vm.provider 'libvirt' do |libvirt|
+ libvirt.default_prefix = 'fort-'
+ 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
+
+end