blob: 3678997ef1f815e7ee8119ffc21e83bc0c364cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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,
#}
}
|