Re: [Puppet Users] Re: puppetlabs/apt and apt::ppa

2013-01-02 Thread Matthias Viehweger
Hi Gareth! On Wed, Dec 26, 2012 at 11:34:07AM +, Gareth Rushgrove wrote: > I'm not sure why the module has a dependency on something that it > doesn't manage though, I tend to try and avoid doing that if possible. I have those in my modules a lot. Otherwise I would get god-modules or wrong or

[Puppet Users] Re: puppetlabs/apt and apt::ppa

2013-01-01 Thread Brad Wright
On Wednesday, 26 December 2012 02:22:35 UTC, Andrey Ageyev wrote: > And when I try to apply manifest - getting: > puppet agent -t > info: Caching catalog for wproxy71.tpnt.net > err: Failed to apply catalog: Could not find dependency > File[/etc/apt/sources.list.d] for > Exec[add-apt-repository

Re: [Puppet Users] Re: puppetlabs/apt and apt::ppa

2012-12-26 Thread Gareth Rushgrove
On 26 December 2012 03:23, Andrey Ageyev wrote: > Fixed by removing dependency File[$sources_list_d] in apt/manifests/ppa.pp > around line 33: > > require => [ > File[$sources_list_d], > Package["${package}"], > ], > > to > require => Package["${package}"], > If you want to do this wi

[Puppet Users] Re: puppetlabs/apt and apt::ppa

2012-12-25 Thread Andrey Ageyev
Fixed by removing dependency File[$sources_list_d] in apt/manifests/ppa.pp around line 33: require => [ File[$sources_list_d], Package["${package}"], ], to require => Package["${package}"], среда, 26 декабря 2012 г., 4:22:35 UTC+2 пользователь Andrey Ageyev написал: > > Greetings,