Displaying 3 results from an estimated 3 matches for "portabella".
2013 Nov 26
37
get a *structured* version of the puppet agent output
puppet agent --verbose shows a verbose output of the changes done by
puppet, such as:
notice:
/Stage[main]/Logstash::Config/Logstash::Configdir[agent]/File[/etc/logstash/agent/config]/owner:
owner changed ''root'' to ''logstash''
notice: /Stage[main]/Varnish/Service[varnish]/ensure: ensure changed
''stopped'' to ''running''
2012 Jun 18
4
How to create local puppet forge repositories
Hi, was just wondering if there''s a way to create a local forge
repositories to host our local modules? Has anyone done that?
I found this post, http://projects.puppetlabs.com/issues/5033.
that was one year ago. Wondering if there''s a way to do it now?
Thanks.
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To
2014 Mar 10
0
when a puppet exec resource contains several "single commands", puppet exec only fails if the last exec command fails
exec {'test':
command => "/bin/ls /doesnotexit",
}
fails as expected:
Error: /bin/ls /doesnotexit returned 1 instead of one of [0]
Error: /Stage[main]//Exec[test]/returns: change from notrun to 0 failed:
/bin/ls /doesnotexit returned 1 instead of one of [0]
However,
exec {'test':
command => "/bin/ls /doesnotexit; /bin/echo hello",
}
does not