[Puppet Users] Re: Executing command via puppet !

2013-09-16 Thread Rahul Khengare
Hi Adeel, You can send the manifests execution reports to puppet master. For the execution report files refer /var/lib/puppet/reports directory. For that you have to add report=true in /etc/puppet/puppet.conf file # # /etc/puppet/puppet.conf file # [agent] report =true >From the reports .

[Puppet Users] Re: Executing command via puppet !

2013-09-16 Thread jcbollinger
On Monday, September 16, 2013 7:18:24 AM UTC-5, Adeel Bhatti wrote: > > It adds the entry in the log file but locally, I want to have agent's > entry on the puppet server's log file !! > is it possible ? > > Puppet's mechanism for communicating general information about nodes to the master is "

[Puppet Users] Re: Executing command via puppet !

2013-09-16 Thread Adeel Bhatti
It adds the entry in the log file but locally, I want to have agent's entry on the puppet server's log file !! is it possible ? Adeel On Monday, September 16, 2013 2:08:28 PM UTC+2, Sneha More wrote: > > Hi, > You can get response from puppet, depend upon what you want to achieve. > *1st case

[Puppet Users] Re: Executing command via puppet !

2013-09-16 Thread Sneha More
Hi, You can get response from puppet, depend upon what you want to achieve. *1st case* : if you want to log the output of command "nginx -t", you can use attribute logoutput => "true" or "false" of exec resource Please refer http://www.puppetcookbook.com/posts/exec-output-logging.html fo