summaryrefslogtreecommitdiff
path: root/manifests/puppet_after_master.pp
blob: 1585e10687cb5f8617e77e073c1f45264b42e579 (plain)
1
2
3
4
5
6
7
8
9
10
class profiles::puppet_after_master {
  file { '/etc/systemd/system/puppet.service.requires':
    ensure => directory,
  }

  file { '/etc/systemd/system/puppet.service.requires/systemd-nspawn@busting.service':
    ensure => link,
    target => '/usr/lib/systemd/system/system-nspawn@.service',
  }
}