Hello, We had the following situation where including two classes that were ensuring the installation of the same package "php5-imagick" and it was causing an error indicating that two ressources of the same name are forbidden (sorry, I don't have the exact message error since we fixed quickly the error).
Since we are newbies in puppet, we would like to understand what this error meant: does it mean that all the package resource ensuring the installation of a package need to have a unique resource name ? Or maybe have we done something wrong in our usage of puppet ? Below, the code causing the error and how we fixed it. Thanks in advance for your feebacks. Best regards, Christophe Code causing the error: /etc/puppet/modules/apache/manifests/init.pp class apache::install { ... package { [ "php5", "php5-cli", "php5-gd", "php5-imagick", "php5- mysql", "phpmyadmin", "mysql-client" ]: ensure => installed, } ... } /etc/puppet/modules/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 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.