Puppet Class: mistral::notifier
- Defined in:
- manifests/notifier.pp
Overview
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'manifests/notifier.pp', line 30
class mistral::notifier(
$type = $::os_service_default,
$host = $::os_service_default,
$topic = $::os_service_default,
$notify_publishers = $::os_service_default,
) {
include mistral::deps
include mistral::params
mistral_config {
'notifier/type': value => $type;
'notifier/host': value => $host;
'notifier/topic': value => $topic;
'notifier/notify': value => $notify_publishers;
}
}
|