diff options
Diffstat (limited to 'code/environments/production/modules/certregen/lib/puppet/functions')
-rw-r--r-- | code/environments/production/modules/certregen/lib/puppet/functions/is_classified_with.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/code/environments/production/modules/certregen/lib/puppet/functions/is_classified_with.rb b/code/environments/production/modules/certregen/lib/puppet/functions/is_classified_with.rb new file mode 100644 index 0000000..0f6d54b --- /dev/null +++ b/code/environments/production/modules/certregen/lib/puppet/functions/is_classified_with.rb @@ -0,0 +1,9 @@ +Puppet::Functions.create_function(:is_classified_with) do + dispatch :is_classified_with do + param 'String', :str + end + + def is_classified_with(str) + closure_scope.find_global_scope.compiler.node.classes.keys.include?(str.to_s) + end +end |