summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp14
1 files changed, 12 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index b466c64..5e6ad79 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,8 +1,18 @@
class systemd {
- exec { 'systemctl-daemon-reload':
- command => 'systemctl daemon-reload',
+ Exec {
refreshonly => true,
path => $::path,
}
+
+ exec {
+ 'systemctl-daemon-reload':
+ command => 'systemctl daemon-reload',
+ }
+
+ exec {
+ 'systemd-tmpfiles-create':
+ command => 'systemd-tmpfiles --create',
+ }
+
}