Displaying 1 result from an estimated 1 matches for "cms_".
Did you mean:
cms
2012 Apr 03
6
2 package resources for the same package installation in two differents modules caused errors
.../cms/manifests/init.pp
class cms::installpackage {
...
package { ''php5-imagick'':
name => ''php5-imagick'',
ensure => ''installed'',
}
...
}
In order to fix the error, we prefixed the resource in
cms::installpackage class with cms_
package { ''cms_php5-imagick'':
name => ''php5-imagick'',
ensure => ''installed'',
}
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to pup...