> How can I check wether a parameter is defined or not. For instance a > function that would fail (with a parser error) if the variable is not > defined: > > check_defined($avar) or check_defined("$avar")
I answer myself, one way would be: if $avar == undef { fail("'avar' not defined") } I think that assertions would be even better: assert($avar != undef) or assert($avar) I think that add assertions would be a good idea. They could check True/False conditions, if variables are defined or not, if objects are defined... Is there any proposal about this? -- Atentamente Héctor Rivas 2010/10/1 Héctor Rivas Gándara <key...@gmail.com>: > Fast question: > > How can I check wether a parameter is defined or not. For instance a > function that would fail (with a parser error) if the variable is not > defined: > > check_defined($avar) or check_defined("$avar") > > -- > Atentamente > Héctor Rivas > -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.