Puppet Class: restic::reload
- Defined in:
- manifests/reload.pp
Summary
Reload systemd via `systemctl daemon-reload`Overview
6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/reload.pp', line 6
class restic::reload (
) {
assert_private()
exec { 'systemctl_daemon_reload_restic':
command => 'systemctl daemon-reload',
path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
refreshonly => true,
}
}
|