diff --git a/manifests/mistral.pp b/manifests/mistral.pp index 43d8d7b31..c107e99ef 100644 --- a/manifests/mistral.pp +++ b/manifests/mistral.pp @@ -76,4 +76,12 @@ class openstack_integration::mistral { class { 'mistral::executor': } class { 'mistral::event_engine': } + $notifier_type = $facts['os']['family'] ? { + 'RedHat' => 'remote', + default => 'local', + } + + class { 'mistral::notifier': + type => $notifier_type + } }