Puppet Class: systemd::systemctl::daemon_reload

Defined in:
manifests/systemctl/daemon_reload.pp

Overview

Reload the systemctl daemon



4
5
6
7
8
9
10
# File 'manifests/systemctl/daemon_reload.pp', line 4

class systemd::systemctl::daemon_reload {
  exec { 'systemctl-daemon-reload':
    command     => 'systemctl daemon-reload',
    refreshonly => true,
    path        => $facts['path'],
  }
}