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