Skip to content

Commit

Permalink
hack: do not check updates for vagrant boxes
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <[email protected]>
  • Loading branch information
crazy-max committed Feb 3, 2025
1 parent 10bd5f4 commit d7a3ef7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions hack/Vagrantfile.freebsd
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions hack/Vagrantfile.netbsd
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions hack/Vagrantfile.openbsd
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d7a3ef7

Please sign in to comment.