The validate_* functions are designed to fail the catalog if the passed variable doesnt match the defined type, sounds like you want the is_* functions (also from stdlib) which return true or false but dont fail.
if ( is_string($myvar) or is_hash($myvar) ) { ... } else { fail('not a string or a hash') } Regards Craig On Wed, Jun 3, 2015 at 6:26 AM, Jacob McCoy Wade <djsto...@gmail.com> wrote: > I am trying to find out how I can validate more than one type of data > structure for a given value in a manifest? In particular I would like to be > able to have either a string or a hash be a valid data structure. > Something like: > if ($myvar != false) { > validate_string($myvar) || validate_hash($myvar) > } > Does anybody know if this is possible to do? > > -- > You received this message because you are subscribed to the Google Groups > "Puppet Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to puppet-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/puppet-users/732c0ec6-d9bb-4f32-9eae-4667037a0e87%40googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- Enviatics | Automation and configuration management http://www.enviatics.com | @Enviatics Puppet Training http://www.enviatics.com/training/ -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/CACxdKhG1MujS2StnayWqOnN5bRuGJ2hMwSj-BGz9h6TP-yowyA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.