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

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