From e880d11f51a613c47bf7d4062bc4fd889478ed26 Mon Sep 17 00:00:00 2001 From: Ricky Ramirez Date: Tue, 8 May 2018 16:02:38 -0700 Subject: [PATCH] Realize virtual resources. This allows other modules to declare fluentd resources without depending on them being installed. --- manifests/init.pp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/manifests/init.pp b/manifests/init.pp index 2d71eed..3cac254 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -94,6 +94,12 @@ class fluentd ( include '::fluentd::config' include '::fluentd::service' + # Realize any virtual configurations + Fluentd::Plugin <| |> + Fluentd::Source <| |> + Fluentd::Filter <| |> + Fluentd::Match <| |> + # dependencies Class['::Fluentd::Repo'] -> Class['::Fluentd::Install']