summaryrefslogtreecommitdiff
path: root/manifests/puppet_after_master.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/puppet_after_master.pp')
-rw-r--r--manifests/puppet_after_master.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/puppet_after_master.pp b/manifests/puppet_after_master.pp
new file mode 100644
index 0000000..1585e10
--- /dev/null
+++ b/manifests/puppet_after_master.pp
@@ -0,0 +1,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',
+ }
+}