aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-02-15 09:35:07 +0000
committerterminaldweller <thabogre@gmail.com>2022-02-15 09:35:07 +0000
commit12aaef8f6ccf2609176e295bd55f752cd94dff6c (patch)
tree9193e3e4d4732d07d5a211a28ba9aa510fa0dea4
parentdebian11 with serial over telnet (diff)
downloadvagrantboxes-12aaef8f6ccf2609176e295bd55f752cd94dff6c.tar.gz
vagrantboxes-12aaef8f6ccf2609176e295bd55f752cd94dff6c.zip
updates
-rw-r--r--debian11/Vagrantfile8
-rw-r--r--freebsd13/Vagrantfile1
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