diff options
author | Micah <micah@leap.se> | 2016-05-24 10:19:42 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-05-24 10:19:42 -0400 |
commit | 38cf1269a499acd9b85390afd6200c2f143fbffc (patch) | |
tree | 1fef658020e58d2a368acedebdeda723860c287f /manifests |
Squashed 'puppet/modules/systemd/' content from commit 6d47fd4
git-subtree-dir: puppet/modules/systemd
git-subtree-split: 6d47fd4999fe03eba6fb11c4490dcbb90d937900
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 00000000..5e6ad792 --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,18 @@ +class systemd { + + Exec { + refreshonly => true, + path => $::path, + } + + exec { + 'systemctl-daemon-reload': + command => 'systemctl daemon-reload', + } + + exec { + 'systemd-tmpfiles-create': + command => 'systemd-tmpfiles --create', + } + +} |