Re: [Puppet Users] Package requires....

2010-07-02 Thread Patrick Mohr
On Jul 1, 2010, at 10:45 PM, Douglas Garstang wrote: > On Thu, Jul 1, 2010 at 9:11 PM, Patrick Mohr wrote: >> >> On Jul 1, 2010, at 9:05 PM, christopher floess wrote: >> >> Hey, this is sort of hijacking the thread, so if need be, please, I can >> start another thread for it, but could someone

Re: [Puppet Users] Package requires....

2010-07-01 Thread Douglas Garstang
On Thu, Jul 1, 2010 at 9:11 PM, Patrick Mohr wrote: > > On Jul 1, 2010, at 9:05 PM, christopher floess wrote: > > Hey, this is sort of hijacking the thread, so if need be, please, I can > start another thread for it, but could someone explain the code from the OP > here. I feel like this is sort o

Re: [Puppet Users] Package requires....

2010-07-01 Thread Patrick Mohr
On Jul 1, 2010, at 9:05 PM, christopher floess wrote: > Hey, this is sort of hijacking the thread, so if need be, please, I can start > another thread for it, but could someone explain the code from the OP here. I > feel like this is sort of the next step in puppet functionality that I need >

Re: [Puppet Users] Package requires....

2010-07-01 Thread christopher floess
Hey, this is sort of hijacking the thread, so if need be, please, I can start another thread for it, but could someone explain the code from the OP here. I feel like this is sort of the next step in puppet functionality that I need to learn (I'm still new). I'll start by pointing out three thi

Re: [Puppet Users] Package requires....

2010-07-01 Thread Douglas Garstang
On Thu, Jul 1, 2010 at 11:22 AM, Dan Carley wrote: > On 1 July 2010 00:32, Douglas Garstang wrote: >> >> If I have a package { "foo": ensure => installed; require => something >> } in a module, AND I also have a Package { require => >> Class['yum::client']} in site.pp, what happens in the module?

Re: [Puppet Users] Package requires....

2010-07-01 Thread Dan Carley
On 1 July 2010 00:32, Douglas Garstang wrote: > If I have a package { "foo": ensure => installed; require => something > } in a module, AND I also have a Package { require => > Class['yum::client']} in site.pp, what happens in the module? Does the > package in the module require both 'something'

[Puppet Users] Package requires....

2010-06-30 Thread Douglas Garstang
If I have a package { "foo": ensure => installed; require => something } in a module, AND I also have a Package { require => Class['yum::client']} in site.pp, what happens in the module? Does the package in the module require both 'something' and the yum::client class, or does the fact I specified