On Tuesday, February 19, 2013 8:48:43 AM UTC-7, jcbollinger wrote:
>
>
>
> On Monday, February 18, 2013 8:41:53 AM UTC-6, Josh D wrote:
>>
>> I have a module for windows nodes that is defined like:
>>
>> class ast_win {
>> Class['ast_win::env'] ~> Class['ast_win::restart'] -> Class['ast_win']
>
On Monday, February 18, 2013 8:41:53 AM UTC-6, Josh D wrote:
>
> I have a module for windows nodes that is defined like:
>
> class ast_win {
> Class['ast_win::env'] ~> Class['ast_win::restart'] -> Class['ast_win']
>
> ast_win::env contains a bunch of scripts that modify the environment on
> th
On Saturday, November 24, 2012 1:17:54 PM UTC-6, Smashed wrote:
>
> class Foo {
>
> require A
>
> … some other stuff
>
> }
>
>
> class A {
>
> include B
>
> include C
>
> include D
>
> }
>
>
> When structured like this does this mean that A,B,C and D will all be
> processed before Foo?
>
Class