Skip to content

Commit 6feb24a

Browse files
committed
hack: do not check updates for vagrant boxes
Signed-off-by: CrazyMax <[email protected]>
1 parent cee4556 commit 6feb24a

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

hack/Vagrantfile.freebsd

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Vagrant.configure("2") do |config|
55
config.vm.box = "generic/freebsd14"
66
config.vm.boot_timeout = 900
7+
config.vm.box_check_update = false
78
config.vm.synced_folder ".", "/vagrant", type: "rsync"
89
config.ssh.keep_alive = true
910

hack/Vagrantfile.netbsd

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Vagrant.configure("2") do |config|
55
config.vm.box = "generic/netbsd9"
66
config.vm.boot_timeout = 900
7+
config.vm.box_check_update = false
78
config.vm.synced_folder ".", "/vagrant", type: "rsync"
89
config.ssh.keep_alive = true
910

hack/Vagrantfile.openbsd

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Vagrant.configure("2") do |config|
55
config.vm.box = "pygolo/openbsd7"
66
config.vm.box_version = "7.5"
77
config.vm.boot_timeout = 900
8+
config.vm.box_check_update = false
89
config.vm.synced_folder ".", "/vagrant", type: "rsync"
910
config.ssh.keep_alive = true
1011

0 commit comments

Comments
 (0)