Skip to content

Instantly share code, notes, and snippets.

@chornberger-c2c
Created June 14, 2023 17:06
Show Gist options
  • Save chornberger-c2c/c5bdde622ea6130f1249b644e73b90d1 to your computer and use it in GitHub Desktop.
Save chornberger-c2c/c5bdde622ea6130f1249b644e73b90d1 to your computer and use it in GitHub Desktop.
Vagrantfile with custom libvirt storage pool
Vagrant.configure("2") do |config|
config.vm.box = "generic/ubuntu2204"
config.vm.provider :libvirt do |v|
v.storage_pool_name = "libvirt-home"
v.memory = "4096"
v.cpus = "4"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment