aboutsummaryrefslogtreecommitdiffstats
path: root/tiny
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-05-02 15:58:05 +0000
committerterminaldweller <thabogre@gmail.com>2022-05-02 15:58:05 +0000
commit4b64eb38556be807a1268c2c415a1635120e6e76 (patch)
treee0d179f4472f2db0db090104d866bb26e27877cc /tiny
parentupdate (diff)
downloadvagrantboxes-4b64eb38556be807a1268c2c415a1635120e6e76.tar.gz
vagrantboxes-4b64eb38556be807a1268c2c415a1635120e6e76.zip
update
Diffstat (limited to 'tiny')
-rw-r--r--tiny/Vagrantfile52
1 files changed, 52 insertions, 0 deletions
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