On 10/24/2009 11:25 AM, Douglas Garstang wrote: > > Oh boy. Puppet is frustrating the heck out of me. > I have this below.... > > node tst_basenode { > > include yum > > Package { > require => [ > Yumrepo["CentOS-Base"], > Yumrepo["EPEL-Core"], > ... > ] > } > } > > node tst_childnode inherits tst_basenode { > include ldap_client > } > > This generally seems to work, making sure that my yum repo's are in > place before anything else is done. However, I saw that the > yum-priorities rpm was being installed way later, and it needs to be > up there with yum, done initially. So, I added a > package["yum-priorities"] to require=> in that default package > definition in the base node and puppet claimed that it found > dependancy cycles. ARGH! > > Actually, if you think about it, there's no guarantee as to when yum > is installed either. It just happens to already be installed because > this is CentOS, but if it wasn't installed, yum might get installed > later, which would break everything.
I'm fairly certain that yum is considered a core package on CentOS, so you should be able to rely on it being there. Besides, if yum isn't installed, how do you expect to install it? That said, if you still want your manifest to reflect yum, adding require => undef to the yum package definition may work. -- Frank Sweetser fs at wpi.edu | For every problem, there is a solution that WPI Senior Network Engineer | is simple, elegant, and wrong. - HL Mencken GPG fingerprint = 6174 1257 129E 0D21 D8D4 E8A3 8E39 29E3 E2E8 8CEC --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---