Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $var = "from topscope"
  2. node default {
  3. $var = "from node"
  4. include lookup_example
  5. }
  6.  
  7. class lookup_example {
  8. notify { $var: } # will be "from node"
  9. notify { $::var: } # will be "from topscope"
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement