Created
June 14, 2023 17:06
-
-
Save chornberger-c2c/c5bdde622ea6130f1249b644e73b90d1 to your computer and use it in GitHub Desktop.
Vagrantfile with custom libvirt storage pool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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