kevin wrote:
> I''d like to run puppet and see exactly what it would do, or what
it
> tried to do.
>
> Do i need to run puppet or puppetd to get that to happen? I''ve
been
> trying the --verbose --parseonly options, but they have not been
> working as I would expect...
You probably want to use the --noop option:
# cat test.pp
node kumiko
{
file { "/tmp/foobar": content => "gazonk"; }
}
# puppet --noop test.pp
notice: //Node[kumiko]/File[/tmp/foobar]/content: is absent, should be
gazonk (noop)
/Thomas Bellman
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from this group, send email to
puppet-users+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---