11 lines
257 B
ObjectPascal
11 lines
257 B
ObjectPascal
|
# @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,
|
||
|
}
|
||
|
}
|