Advertisement
knowshantanu

validate_re test

Apr 9th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. 1. Puppet manifest
  2.  
  3. {{{
  4. class teststdlib (
  5. $one_db_backend = undef
  6. ) {
  7. $allowed_dbs = ['mysql', 'sqlite']
  8. validate_re($one_db_backend,$allowed_dbs)
  9. file{'/tmp/testl':
  10. ensure => present,
  11. }->
  12. file_line{'testline':
  13. line => "$one_db_backend",
  14. path => '/tmp/testl',
  15. ensure => present,
  16. }
  17. }
  18.  
  19. class {'teststdlib':
  20. one_db_backend => 'mysq'
  21. }
  22.  
  23. }}}
  24.  
  25. 2.a Local test
  26. {{{
  27. puppet apply classes/teststdlib.pp
  28. validate_re(): "mysq" does not match ["mysql", "sqlite"] at /etc/puppet/manifests/classes/teststdlib.pp:5 on node one-26...
  29. }}}
  30.  
  31. 2.b Test with client-server run
  32. {{{
  33. Apr 9 15:25:54 one-23 puppet-agent[23299]: Could not retrieve catalog from remote server: Error 400 on SERVER: validate_re(): "mysq" does not match ["mysql", "sqlite"] at /etc/puppet/manifests/classes/teststdlib.pp:5 on node one-23...
  34. Apr 9 15:25:54 one-23 puppet-agent[23299]: Using cached catalog
  35. Apr 9 15:25:55 one-23 puppet-agent[23299]: (/Stage[main]/Teststdlib/File[/tmp/testl]/ensure) created
  36. Apr 9 15:25:55 one-23 puppet-agent[23299]: (/Stage[main]/Teststdlib/File_line[testline]/ensure) created
  37. }}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement