Skip to content

Instantly share code, notes, and snippets.

@zipkid
Created April 11, 2013 14:44
Show Gist options
  • Save zipkid/5363945 to your computer and use it in GitHub Desktop.
Save zipkid/5363945 to your computer and use it in GitHub Desktop.
[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
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