10 lines
257 B
Puppet
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,
|
|
}
|
|
}
|