From 4b64eb38556be807a1268c2c415a1635120e6e76 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 2 May 2022 20:28:05 +0430 Subject: update --- netbsd9/Vagrantfile | 46 ++++++++++++++++++++++++++++++++++++++++++++++ tiny/Vagrantfile | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 netbsd9/Vagrantfile create mode 100644 tiny/Vagrantfile diff --git a/netbsd9/Vagrantfile b/netbsd9/Vagrantfile new file mode 100644 index 0000000..274450f --- /dev/null +++ b/netbsd9/Vagrantfile @@ -0,0 +1,46 @@ +# vi: set ft=ruby : +# frozen_string_literal: true + +ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' +MOUNT_POINT = '/home/vagrant/ff' +CPU_COUNT = 1 +MEMORY = 1024 + +Vagrant.require_version '>= 2.2.6' +Vagrant.configure('2') do |config| + config.vm.box = 'generic/netbsd9' + config.vm.box_version = '3.6.14' + config.vm.box_check_update = false + config.vm.synced_folder './', MOUNT_POINT, type: 'nfs', nfs_version: 3, nfs_udp: false, disabled: true + config.vm.hostname = 'netbsd9' + config.vm.boot_timeout = 240 + config.vm.graceful_halt_timeout = 45 + + # CFLAGS="-I/opt/vagrant/embedded/include/ruby-3.0.0/ruby" vagrant plugin install vagrant-libvirt + config.vagrant.plugins = [{ 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] + + config.vm.provider 'libvirt' do |libvirt| + libvirt.default_prefix = 'netbsd9-' + libvirt.driver = 'kvm' + libvirt.nested = false + # libvirt.machine_type = 'pc-q35-3.1' + # libvirt.qemuargs value: '-object' + # libvirt.qemuargs value: 'rng-random,id=rng0,filename=/dev/urandom' + # libvirt.qemuargs value: '-device' + # libvirt.qemuargs value: 'virtio-rng-pci,rng=rng0,bus=pcie.0' + libvirt.qemuargs value: '-nographic' + libvirt.qemuargs value: '-nodefaults' + libvirt.qemuargs value: '-no-user-config' + libvirt.sound_type = nil + libvirt.cpus = CPU_COUNT + libvirt.memory = MEMORY + libvirt.random model: 'random' + libvirt.autostart = false + end + + # config.vm.provision 'provision', type: 'shell', name: 'provision', privileged: false, reboot: false, inline: <<-SHELL + # set -ex + # sudo pkg update && sudo pkg upgrade -y + # sudo pkg install -y pkgconf gcc gmake git wget curl vim tmux ncurses readline + # SHELL +end diff --git a/tiny/Vagrantfile b/tiny/Vagrantfile new file mode 100644 index 0000000..d650727 --- /dev/null +++ b/tiny/Vagrantfile @@ -0,0 +1,52 @@ +# 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/alpine315' + config.vm.box_version = '3.6.14' + config.vm.box_check_update = false + config.vm.hostname = 'virt-tiny' + + if Vagrant.has_plugin?('vagrant-proxyconf') + config.proxy.http = 'socks5://192.168.1.103:9050' + config.proxy.https = 'socks5://192.168.1.103:9050' + config.proxy.noproxy = '127.0.0.1, localhost' + end + + # 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-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] + + config.vm.provider 'libvirt' do |libvirt| + libvirt.default_prefix = 'tiny-' + 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: 'telnet::4323,server,nowait' + 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 -- cgit v1.2.3