On Mon, Mar 05, 2012 at 11:27:46PM -0800, Thomas Sturm wrote: > Both solutions don't help when taking this git module from github, > because we'd have to change it, it would no longer be an atomic piece > of logic one can just take and use unchanged. Is there some kind of > best practice for this problem? Or is there some other workaround I > don't know of or I didn't understand so far?
You haven't missed anything. Virtual resources *are* the best practice for avoiding duplicate definitions, such as it is. However, you won't see them used a lot for package resource declarations; well-written Puppet modules tend to encapsulate a discrete function, so package conflicts tend to be rare (at least, within an organisation's own code). Personally, I believe strongly in keeping puppet code as simple as possible and only adding complexity (e.g. virtual definitions) where a specific situation requires it. Adding layers of abstraction to code in Puppet's declarative DSL causes more pain than it solves. You have a choice of altering the third party code or your own. You will keep encountering this problem if you use third party modules. I guess you could do create your own safe package wrapper, something like this: define safepackage ( $ensure = present ) { if !defined(Package[$title]) { package { $title: ensure => $ensure } } } And either use it everywhere (not necessarily a good idea) or wherever you hit a problem with third party code. Your problem is relevant to the earlier post about code reuse. I considered responding to that (too busy, sorry) and this was one of the kinds of scenarios that I had in mind. -- Bruce I must admit that the existence of Disneyland (which I know is real) proves that we are not living in Judea in AD 50. -- Philip K. Dick -- 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+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.