aboutsummaryrefslogtreecommitdiffstats
path: root/debian11/Vagrantfile
blob: 8ddee49fa1736bfaf83da62eba40b9e2937157a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 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/debian11'
  config.vm.box_version = '4.0.4'
  config.vm.box_check_update = false
  config.vm.hostname = 'virt-deb11'

  # 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

  config.vm.network 'forwarded_port', guest: 7070, host: 7070, protocol: 'tcp', atuo_correct: true
  config.vm.network 'forwarded_port', guest: 4444, host: 4444, protocol: 'tcp', atuo_correct: true
  config.vm.network 'forwarded_port', guest: 4447, host: 4447, protocol: 'tcp', atuo_correct: true

  # 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 = 'deb11-'
    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::4321,server,nowait'
    libvirt.random model: 'random'
  end

  config.vm.provision 'i2p-install', type: 'shell', name: 'i2p-install', inline: <<-SHELL
    export DEBIAN_FRONTEND=noninteractive && \
      sudo apt update && sudo apt upgrade -y && \
      sudo apt install -y i2pd
    sudo systemctl enable i2pd
    sudo systemctl start i2pd
  SHELL
end