Last active
April 21, 2017 19:56
-
-
Save binford2k/250c30dad95b0f65600eb153a1748b82 to your computer and use it in GitHub Desktop.
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
# this blows up with Error while evaluating a Resource Statement, Could not find stage last specified by Class[Test] | |
class {'test': | |
stage => 'last', | |
msg => 'boo', | |
} | |
stage { 'last': } | |
Stage['main'] -> Stage['last'] | |
class test ($msg) { | |
notify { $msg: } | |
} | |
# this works | |
# class {'test': | |
# stage => 'last', | |
# msg => 'boo', | |
# } | |
notify { 'blahblah': } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment