Add systemd module, required by rabbitmq
[mirror/dsa-puppet.git] / 3rdparty / modules / systemd / manifests / systemctl / daemon_reload.pp
diff --git a/3rdparty/modules/systemd/manifests/systemctl/daemon_reload.pp b/3rdparty/modules/systemd/manifests/systemctl/daemon_reload.pp
new file mode 100644 (file)
index 0000000..61b9f52
--- /dev/null
@@ -0,0 +1,10 @@
+# Reload the systemctl daemon
+#
+# @api public
+class systemd::systemctl::daemon_reload {
+  exec { 'systemctl-daemon-reload':
+    command     => 'systemctl daemon-reload',
+    refreshonly => true,
+    path        => $facts['path'],
+  }
+}