aboutsummaryrefslogtreecommitdiff
path: root/manifests/kvm/packages.pp
blob: 688e5faf2f820d67b2567ce9b8f42b2003f5260c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class virtual::kvm::packages {
  package { [
    'qemu-kvm',
    'socat',
    'fakeroot',
    'xorriso',
    'debirf',
    'simple-cdd',
  ]:
    ensure  => present,
  }

  # Provide a netboot image for VM installs
  package { "debian-installer-9-netboot-${::architecture}":
    ensure => present,
  }
}