This is often an issue with the underlying yum command being executed.

Try running:

# puppet apply --verbose --debug --execute 'package
{yum-plugin-versionlock: ensure => latest}'

to see what is happening.

On my host this shows that '/usr/bin/yum -d 0 -e 0 -y install
yum-plugin-versionlock' is being executed so I'd try this command manually
without the -y to see if I get any errors.

  - Keith


On 16 May 2013 13:35, <michael.r.bow...@gmail.com> wrote:

> So I am having issue with a manifest that contains the class below.  I was
> in hopes somebody could point me in the correct direction;
>
> Original class, works on many others systems I have this deployed to,
>
> class base::yum_plugins{
>         require base::yum_repos
>         package {yum-versionlock: ensure => latest}
>         package {yum-security: ensure => latest}
> }
> However on a machine we are building a template out of it fails.
>
>
> Debug: Executing '/bin/rpm -q yum-versionlock --nosignature --nodigest
> --qf %{NAME} %|EPOCH?{%{EPOCH}}:{0}| %{VERSION} %{RELEASE} %{ARCH}
> '
> Error: Could not update: Could not find package yum-versionlock
> Error: /Stage[main]/Base::Yum_plugins/Package[yum-versionlock]/ensure:
> change from absent to latest failed: Could not update: Could not find
> package yum-versionlock
> Notice: /File[/etc/yum/pluginconf.d/versionlock.list]: Dependency
> Package[yum-versionlock] has failures: true
> Warning: /File[/etc/yum/pluginconf.d/versionlock.list]: Skipping because
> of failed dependencies
> Debug: Finishing transaction 70184260275260
> Debug: Storing state
> Debug: Stored state in 0.02 seconds
> Notice: Finished catalog run in 6.66 seconds
> Debug: Value of 'preferred_serialization_format' (pson) is invalid for
> report, using default (yaml)
> Debug: report supports formats: b64_zlib_yaml raw yaml; using yaml
> [root@rhel6Template ~]# ^C
> [root@rhel6Template ~]# /bin/rpm -q yum-versionlock
> package yum-versionlock is not installed
> [root@rhel6Template ~]# /bin/rpm -q yum-plugin-versionlock
> yum-plugin-versionlock-1.1.30-14.el6.noarch
>
> Change class to represent yum-plugin-versionlock and it fails slightly
> different,
>
> class base::yum_plugins{
>         require base::yum_repos
>         package {yum-plugin-versionlock: ensure => latest}
>         package {yum-security: ensure => latest}
>
> Error: Failed to apply catalog: Could not find dependency
> Package[yum-versionlock] for File[/etc/yum/pluginconf.d/versionlock.list
>
> Yet
> Setting up Install Process
> Package yum-plugin-versionlock-1.1.30-14.el6.noarch already installed and
> latest version
> Nothing to do
>
> and
>
> [root@rhel6Template pluginconf.d]# cd /etc/yum/pluginconf.d/
> [root@rhel6Template pluginconf.d]# ls
> product-id.conf  rhnplugin.conf  security.conf  subscription-manager.conf
> versionlock.conf  versionlock.list
> Any help woudld be greatly appreciated;
> Mike
>
>
>
>
> --
> 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+unsubscr...@googlegroups.com.
> To post to this group, send email to puppet-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/puppet-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to