You can set "noop => true" in the package resource and puppet won't
actually change it, just log that it wants to change it.
package { "httpd":
name => "httpd",
ensure => "latest",
noop => true,
}
This is especially convenient with tagmail or other reporting.
If possible, making "noop" the default for all packages will save a
lot of typing.
Package { noop => true }
It sounds like that's what you want anyway, and you can always
override individual packages with "noop => false" if needed.
Standard disclaimers apply, be sure to test first.
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.