From 2505ab1d8e1add42387a06a9cbd6b4e58d535928 Mon Sep 17 00:00:00 2001 From: Dmitry Ilyin Date: Tue, 18 Oct 2016 16:37:21 -0700 Subject: [PATCH] Fix mcagent report Set reports to none in order to disable the Puppet reporting during the deployment. It some cases it Puppet was failing the deploymnet being unable to store the report file to the missing Puppet master. Change-Id: I888316824920f71f6c4953c513eea3a4c277d50b --- mcagents/puppetd.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mcagents/puppetd.rb b/mcagents/puppetd.rb index b13b5946..fd937c98 100644 --- a/mcagents/puppetd.rb +++ b/mcagents/puppetd.rb @@ -206,10 +206,9 @@ module MCollective @puppetd_agent, request.fetch(:manifest, '/etc/puppet/manifests/site.pp'), "--modulepath=#{request.fetch(:modules, '/etc/puppet/modules')}", - '--logdest', - 'syslog', + '--logdest', 'syslog', '--trace', - '--report' + '--reports', 'none', ] unless request[:forcerun] if @splaytime && @splaytime > 0