diff options
| -rw-r--r-- | debian11/Vagrantfile | 8 | ||||
| -rw-r--r-- | freebsd13/Vagrantfile | 1 | 
2 files changed, 5 insertions, 4 deletions
| diff --git a/debian11/Vagrantfile b/debian11/Vagrantfile index fa38771..153bcd4 100644 --- a/debian11/Vagrantfile +++ b/debian11/Vagrantfile @@ -38,11 +38,11 @@ Vagrant.configure('2') do |config|      # libvirt.qemuargs value: '-chardev'      # libvirt.qemuargs value: 'pci-serial,chardev=hostusbserial'      libvirt.qemuargs value: '-serial' -    libvirt.qemuargs value: 'telnet:localhost:4321,server,nowait' +    libvirt.qemuargs value: 'telnet::4321,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 +  # config.vm.provision 'i2p-install', type: 'shell', name: 'i2p-install', inline: <<-SHELL +  #   sudo apt update && sudo apt upgrade -y +  # SHELL  end diff --git a/freebsd13/Vagrantfile b/freebsd13/Vagrantfile index 84f6e95..3105c68 100644 --- a/freebsd13/Vagrantfile +++ b/freebsd13/Vagrantfile @@ -49,5 +49,6 @@ Vagrant.configure('2') do |config|    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 | 
