Puppet Class: confluent::systemd
- Defined in:
- manifests/systemd.pp
Overview
Class is used to hold a resource to reload systemd due to a unit file change. This class is used internally and should not be referenced directly.
4 5 6 7 8 9 10 11 12 |
# File 'manifests/systemd.pp', line 4
class confluent::systemd {
exec{ 'kafka-systemctl-daemon-reload':
command => 'systemctl daemon-reload',
path => [
'/usr/bin'
],
refreshonly => true
}
}
|