Skip to content

Instantly share code, notes, and snippets.

@reidmv
Created May 19, 2012 23:29
Show Gist options
  • Save reidmv/2732775 to your computer and use it in GitHub Desktop.
Save reidmv/2732775 to your computer and use it in GitHub Desktop.
Demo puppet undef tests
$testvar = ""
if $testvar == undef {
notify { "testvar == undef": }
}
if $testvar == "" {
notify { 'testvar == ""': }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment