61b9f5252869200911f3bb81bdf3f2ab22087c0b
[mirror/dsa-puppet.git] / 3rdparty / modules / systemd / manifests / systemctl / daemon_reload.pp
1 # Reload the systemctl daemon
2 #
3 # @api public
4 class systemd::systemctl::daemon_reload {
5   exec { 'systemctl-daemon-reload':
6     command     => 'systemctl daemon-reload',
7     refreshonly => true,
8     path        => $facts['path'],
9   }
10 }