Re: [Puppet Users] Chaining behavior

2011-10-24 Thread Dan Bode
The ordering only applies to the order in which resources are applied, not the order in which the code is processed. It will work like you expect if you switch out the calls to the notice function with notify resources. On Mon, Oct 24, 2011 at 3:48 AM, Andre Nathan wrote: > Hello > > I'm experi

[Puppet Users] Chaining behavior

2011-10-24 Thread Andre Nathan
Hello I'm experimenting with the new resource chaining syntax. Here's the code: class first { notice("first") } class second { notice("second") } class third { notice("third") } include third include second include first Class["first"] -> Class["second"] -> Class["third"] Shouldn