--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/8147ba9c-3f34-4b99-a02e-fd23909fb553%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/77f65608-d59b-4a3c-a055-b7f09c18a1fd%40googlegroups.com.
Error: Execution of '/bin/rpm -e 'php-5.5.5-2.el6.remi.x86_64' returned 1: error: package 'php-5.5.5-2.el6.remi.x86_64 is not installedError: /Stage[main]/Php/Package[php-5.5.5-2.el6.remi.x86_64]/ensure: change from 5.5.5-2.el6.remi to absent failed: Execution of '/bin/rpm -e 'php-5.5.5-2.el6.remi.x86_64' returned 1: error: package 'php-5.5.5-2.el6.remi.x86_64 is not installed
/bin/rpm -e 'php-5.5.5-2.el6.remi.x86_64'
package { 'php-common':provider => 'yum',ensure => absent,}
From the command line, with 'rpm' I get errors about dependencies but if I remove it using 'yum' it remove it successfully.so I write:package { 'php-common':provider => 'yum',ensure => absent,}But it still use the 'rpm' command and give me conflict rpm have.It's ignore the provider definition.Why it still don't use the yum command?