Created
April 11, 2013 14:44
-
-
Save zipkid/5363945 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
[root@vooitop ~]# puppet apply test.pp | |
Warning: Config file /etc/puppet/hiera.yaml not found, using Hiera defaults | |
Notice: bar 1 - baz | |
Notice: /Stage[main]/Foo/Notify[bar 1 - baz ]/message: defined 'message' as 'bar 1 - baz ' | |
Notice: Finished catalog run in 0.05 seconds |
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
class foo ( | |
$bar = '1', | |
$baz = $bar, | |
) { | |
notify { "bar ${bar} - baz ${baz}": } | |
} | |
include foo | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment