haiku/3rdparty/vagrant/Vagrantfile
Alexander von Gluck IV 9e25244c5e 3rdparty/vagrant: Add our vagrant templates
* I have to figure out how to do this every major
  release, put here to document somewhat.
* The os images are empty files for obvious reasons
* This vagrant box is used by qemu for their automated
  testing under Haiku
  https://github.com/qemu/qemu/blob/master/tests/vm/haiku.x86_64

Change-Id: I8e02104063284a96e1672051e3d504a78a64cfe3
2022-02-16 12:09:06 -06:00

8 lines
170 B
Ruby

#
# Example Vagrantfile to launch a haiku image
#
Vagrant.configure("2") do |config|
config.vm.box = "haiku-os/r1beta3-x86_64"
config.vm.box_version = "20220216"
end