Created
February 25, 2015 18:48
-
-
Save trlinkin/6a0fa6fd02ebdee6341c to your computer and use it in GitHub Desktop.
What the hell Run Stages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stage {'1':} -> Stage['main'] | |
| class first { | |
| notify {'simulated change':} | |
| } | |
| class second { | |
| exec { '/bin/echo "I should not have run"': | |
| refreshonly => true, | |
| logoutput => true, | |
| subscribe => Notify['simulated change'] | |
| } | |
| } | |
| class { 'first': | |
| stage => 1, | |
| } | |
| class { 'second': } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment