Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class test::config(
  2. $ismaster = hiera('ismaster',undef),
  3.  
  4. ) {
  5. if ("${ismaster}" == true) {
  6. notify { 'I am a master' : }
  7. }
  8. }
  9.  
  10.  
  11. ebb.template
  12.  
  13. <% if @ismaster == true %>
  14. hello I am master
  15. <% end %>
  16.  
  17. fqdn.yaml
  18.  
  19. test::config::ismater: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement