http://docs.puppetlabs.com/puppet/3/reference/lang_relationships.html#chaining-arrows
Regards,
I have nodes.pp defined as followsinclude module1include module2include module3}Very simple definition. No parameterization, no scoping etcWhen I run "puppet agent -t" on the agent, I see the execution jumping to module 3 after module 1.Not sure how I can do "before" or "after" to say - execute module 2 only if module 1 is successful.
Also, I get different results when I run the agent second time. Say, something was owned by app user. Next time it becomes, root user.appreciate any help.