This is not exactly what you're looking for but may be a solution. We
are using the multiple environment functionality (http://
projects.puppetlabs.com/projects/1/wiki/Using_Multiple_Environments)
to manage version control to prevent changes from impacting production
while we're implementing and testing in DEV. We basically have a
checkout/working copy of the puppet modules for each environment.
When we want to upgrade production, we snap a new tag, and then update
the working directory on the PM to the new version. Our tree looks
like:
/etc/puppet/env
|-- dev
| |-- manifests
| `-- modules
|-- preprod
| |-- manifests
| `-- modules
`-- prod
|-- manifests
`-- modules
This gives us version control at the environment level instead of at
the module level. I don't know of any dependency resolution solution.
John
--
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.