diff options
Diffstat (limited to 'manifests/utils/virtual.pp')
-rw-r--r-- | manifests/utils/virtual.pp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/manifests/utils/virtual.pp b/manifests/utils/virtual.pp new file mode 100644 index 0000000..3678997 --- /dev/null +++ b/manifests/utils/virtual.pp @@ -0,0 +1,23 @@ +class nodo::utils::virtual { + package { [ + # For running virtual machines + 'qemu', + 'qemu-kvm', + #'virtualbox-guest-additions-iso', + + # For graphical interfacing with virtual machines + 'virt-viewer', + 'spice-client', + 'spice-client-gtk', + ]: + ensure => present, + } + + # We're not managing this package as we're favouring the + # virtualbox package which doesn't needs it. + #package { [ + # 'virtualbox-fuse', + #]: + # ensure => present, + #} +} |