From d7a3ef7ba82065bcc823ee7d991500367d8c9fab Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Wed, 29 Jan 2025 11:46:38 +0100 Subject: [PATCH] hack: do not check updates for vagrant boxes Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- hack/Vagrantfile.freebsd | 1 + hack/Vagrantfile.netbsd | 1 + hack/Vagrantfile.openbsd | 1 + 3 files changed, 3 insertions(+) diff --git a/hack/Vagrantfile.freebsd b/hack/Vagrantfile.freebsd index f86df6135c87..0d87f0912f63 100644 --- a/hack/Vagrantfile.freebsd +++ b/hack/Vagrantfile.freebsd @@ -4,6 +4,7 @@ Vagrant.configure("2") do |config| config.vm.box = "generic/freebsd14" config.vm.boot_timeout = 900 + config.vm.box_check_update = false config.vm.synced_folder ".", "/vagrant", type: "rsync" config.ssh.keep_alive = true diff --git a/hack/Vagrantfile.netbsd b/hack/Vagrantfile.netbsd index a07d763ee386..932630bc254d 100644 --- a/hack/Vagrantfile.netbsd +++ b/hack/Vagrantfile.netbsd @@ -4,6 +4,7 @@ Vagrant.configure("2") do |config| config.vm.box = "generic/netbsd9" config.vm.boot_timeout = 900 + config.vm.box_check_update = false config.vm.synced_folder ".", "/vagrant", type: "rsync" config.ssh.keep_alive = true diff --git a/hack/Vagrantfile.openbsd b/hack/Vagrantfile.openbsd index adab6b275380..06ecaf8fc3ef 100644 --- a/hack/Vagrantfile.openbsd +++ b/hack/Vagrantfile.openbsd @@ -5,6 +5,7 @@ Vagrant.configure("2") do |config| config.vm.box = "pygolo/openbsd7" config.vm.box_version = "7.5" config.vm.boot_timeout = 900 + config.vm.box_check_update = false config.vm.synced_folder ".", "/vagrant", type: "rsync" config.ssh.keep_alive = true