Skip to content

Instantly share code, notes, and snippets.

@reidmv
Created January 7, 2014 02:56
Show Gist options
  • Save reidmv/8294007 to your computer and use it in GitHub Desktop.
Save reidmv/8294007 to your computer and use it in GitHub Desktop.
$value = '2'
if $value == '1' {
$conditional_require = 'example1'
} elsif $value == '3' {
$conditional_require = 'example3'
} else {
$conditional_require = []
}
notify { 'example1': }
notify { 'example2': require => Notify[$conditional_require] }
notify { 'example3': require => Notify[$conditional_require] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment