aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/virtual.pp
blob: 7440810e0278c394f73b9c1f7933d5ffb06ae2e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class nodo::utils::virtual (
  $ensure = 'installed',
) {
  package { [
    # For running virtual machines
    'qemu',
    'qemu-kvm',
    #'virtualbox-guest-additions-iso',

    # For graphical interfacing with virtual machines
    'xpra',
    'virt-viewer',
    'spice-client',
    'spice-client-gtk',
  ]:
    ensure => $ensure,
  }

  # We're not managing this package as we're favouring the
  # virtualbox package which doesn't needs it.
  #package { [
  #  'virtualbox-fuse',
  #]:
  #  ensure => $ensure,
  #}
}