Puppet Function: complyadm::maybe_to_bool
- Defined in:
- functions/maybe_to_bool.pp
- Function type:
- Puppet Language
Overview
1 2 3 4 5 6 |
# File 'functions/maybe_to_bool.pp', line 1
function complyadm::maybe_to_bool(Any $value) {
$bool_or_undef = $value ? {
undef => undef,
default => Boolean($value),
}
}
|