diff options
author | terminaldweller <thabogre@gmail.com> | 2023-02-04 12:55:27 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2023-02-04 12:55:27 +0000 |
commit | d3dca508fe0bd9da5ef6b432d327b5c97e2e57ab (patch) | |
tree | 800f48a9e3a05fdfd4693a7a9e1a86f91adb75bb | |
parent | kali (diff) | |
download | vagrantboxes-d3dca508fe0bd9da5ef6b432d327b5c97e2e57ab.tar.gz vagrantboxes-d3dca508fe0bd9da5ef6b432d327b5c97e2e57ab.zip |
anohter deb11
-rw-r--r-- | debian-bullseye/Vagrantfile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/debian-bullseye/Vagrantfile b/debian-bullseye/Vagrantfile new file mode 100644 index 0000000..ba52719 --- /dev/null +++ b/debian-bullseye/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 = 'debian/bullseye64' + config.vm.box_version = '11.20221219.1' + config.vm.box_check_update = false + config.vm.hostname = 'virt-debbull' + + # 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.vagrant.plugins = [{ 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] + + config.vm.provider 'libvirt' do |libvirt| + libvirt.default_prefix = 'debbull-' + libvirt.driver = 'kvm' + libvirt.memory = '512' + libvirt.cpus = 1 + 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 |