From 133ea9853a98dc60169700b69070c762b7227c2d Mon Sep 17 00:00:00 2001 From: r0b0tAnthony Date: Tue, 29 Mar 2016 20:00:27 -0400 Subject: [PATCH] Updated config.pp to add base_path sensu_rabbitmq_config resource type does not a base_path param being passed to it. This causes it default to /etc/sensu/conf.d which breaks Windows support. Added base_path to resource using $sensu::conf_dir, used on the above file resource to ensure the directory. --- manifests/rabbitmq/config.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/rabbitmq/config.pp b/manifests/rabbitmq/config.pp index ecfe2bfdd4..ad9ad4ff8c 100644 --- a/manifests/rabbitmq/config.pp +++ b/manifests/rabbitmq/config.pp @@ -120,6 +120,7 @@ ssl_private_key => $ssl_private_key, reconnect_on_error => $sensu::rabbitmq_reconnect_on_error, prefetch => $sensu::rabbitmq_prefetch, + base_path => $sensu::conf_dir, } }