diff options
-rw-r--r-- | rhel8/Vagrantfile | 5 | ||||
-rw-r--r-- | tiny/Vagrantfile | 1 | ||||
-rw-r--r-- | ubuntu1804/Vagrantfile | 48 | ||||
-rw-r--r-- | ubuntu2004/Vagrantfile | 48 |
4 files changed, 98 insertions, 4 deletions
diff --git a/rhel8/Vagrantfile b/rhel8/Vagrantfile index 528745a..72ac57a 100644 --- a/rhel8/Vagrantfile +++ b/rhel8/Vagrantfile @@ -20,9 +20,8 @@ Vagrant.configure('2') do |config| config.ssh.connect_timeout = 15 if Vagrant.has_plugin?('vagrant-proxyconf') - config.proxy.http = 'http://192.168.1.103:9995' - config.proxy.https = 'http://192.168.1.103:9995' - # config.proxy.noproxy = '127.0.0.1, localhost' + # config.proxy.http = 'http://192.168.1.103:9995' + # config.proxy.https = 'http://192.168.1.103:9995' end # shares diff --git a/tiny/Vagrantfile b/tiny/Vagrantfile index d650727..6bb3dc0 100644 --- a/tiny/Vagrantfile +++ b/tiny/Vagrantfile @@ -13,7 +13,6 @@ Vagrant.configure('2') do |config| 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 diff --git a/ubuntu1804/Vagrantfile b/ubuntu1804/Vagrantfile new file mode 100644 index 0000000..467c89a --- /dev/null +++ b/ubuntu1804/Vagrantfile @@ -0,0 +1,48 @@ +# 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/ubuntu1804' + config.vm.box_version = '4.0.2' + config.vm.box_check_update = false + config.vm.hostname = 'virt-ubuntu18' + + # 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.vagrant.plugins = ['vagrant-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] + + config.vm.provider 'libvirt' do |libvirt| + libvirt.default_prefix = 'ubuntu18-' + 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: '-chardev' + # libvirt.qemuargs value: 'serial,path=/dev/ttyS0,id=hostusbserial' + # libvirt.qemuargs value: '-chardev' + # libvirt.qemuargs value: 'pci-serial,chardev=hostusbserial' + # libvirt.qemuargs value: '-serial' + # libvirt.qemuargs value: 'telnet::4332,server,nowait' + 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 diff --git a/ubuntu2004/Vagrantfile b/ubuntu2004/Vagrantfile new file mode 100644 index 0000000..6c459e8 --- /dev/null +++ b/ubuntu2004/Vagrantfile @@ -0,0 +1,48 @@ +# 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/ubuntu2004' + config.vm.box_version = '4.0.2' + config.vm.box_check_update = false + config.vm.hostname = 'virt-ubuntu20' + + # 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 = 'ubuntu20-' + 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: '-chardev' + # libvirt.qemuargs value: 'serial,path=/dev/ttyS0,id=hostusbserial' + # libvirt.qemuargs value: '-chardev' + # libvirt.qemuargs value: 'pci-serial,chardev=hostusbserial' + libvirt.qemuargs value: '-serial' + libvirt.qemuargs value: 'telnet::4421,server,nowait' + 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 |