From e69885571a905d99de0f9a706f114ae88a3c5a63 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 17 Jun 2021 00:30:19 +0200 Subject: [PATCH] vagrant: upgrade openbsd box to 6.9 --- Vagrantfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index b1c567f1f..81652c1df 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -78,13 +78,12 @@ end def packages_openbsd return <<-EOF pkg_add bash - chsh -s /usr/local/bin/bash vagrant + chsh -s bash vagrant pkg_add lz4 pkg_add zstd pkg_add git # no fakeroot pkg_add py3-pip pkg_add py3-virtualenv - ln -sf /usr/local/bin/virtualenv-3 /usr/local/bin/virtualenv EOF end @@ -332,11 +331,10 @@ Vagrant.configure(2) do |config| end config.vm.define "openbsd64" do |b| - b.vm.box = "openbsd64-64" + b.vm.box = "generic/openbsd6" b.vm.provider :virtualbox do |v| v.memory = 1024 + $wmem end - b.ssh.shell = "sh" b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant") b.vm.provision "packages openbsd", :type => :shell, :inline => packages_openbsd b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("openbsd64")