fruit-bowl/environments/production/thirdparty/docker/manifests/systemd_reload.pp
2025-04-01 17:40:03 +00:00

10 lines
257 B
Puppet

# @summary
# For systems that have systemd
#
class docker::systemd_reload {
exec { 'docker-systemd-reload':
path => ['/bin/', '/sbin/', '/usr/bin/', '/usr/sbin/',],
command => 'systemctl daemon-reload',
refreshonly => true,
}
}