summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: f768f436ce95209a786db7a6bb14d4f9bcc9cc43 (plain)
1
2
3
4
5
6
7
8
9
10
class nspawn (
  String $machine_dir = '/var/lib/machines',
  String $template_dir = '/var/lib/machines',
  String $puppet_server = 'puppet',
  Hash[String,Hash] $templates,
  Hash[String,Hash] $machines,
) {
  create_resources(nspawn::machine, $machines)
  create_resources(nspawn::template, $templates)
}