Hi all,

I am trying to use puppet to downgrade my gdm package from 64 to 39, but 
got package dependency problem:

Here is my class:

class gdmver39 {
  yumrepo { 'custom':
    baseurl => 'file:/home/admin/REPO/WS6.4',
    enabled => 1,
  }

  package { "gdm-libs": ensure => '2.30.4-39.el6', require => 
Yumrepo["custom"] }   
  package { "gdm-plugin-fingerprint": ensure => '2.30.4-39.el6', require => 
Yumrepo["custom"] }
  package { "gdm": ensure => '2.30.4-39.el6', require => Yumrepo["custom"] 
} 
}

I think myabe i should add the parameter below to my 'gdm' line'?

      require Package['gdm-libs', 'gdm-plugin-fingerprint'] 

How to tell puppet to handle the dependency automatically?

Thanks,
Stacey

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/4677198b-481d-4342-929a-d353df797645%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to