Created
April 21, 2017 19:56
-
-
Save binford2k/3808bc2152cec94ec98acfcac31a8a5d 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