How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "adriengourbault/truenas"
config.vm.box_version = "0.1.0"
end
vagrant init adriengourbault/truenas \
--box-version 0.1.0
vagrant up
This version was created over 1 year ago.
Release TrueNAS 13.0-U3.1
Edit the box's metadata.json like so:
(the file is in ~/.vagrant.d/boxes/<box_name>/0/libvirt/metadata.json)
Replace "virtualsize" entry with a "disks" array.
Example
# Before
{"format":"qcow2","provider":"libvirt","virtualsize":50}
#After
{"format":"qcow2","provider":"libvirt","disks":[{"path" : "box.img"},{"path":"freenas-1"}]}