Puppet Function: assert_private
- Defined in:
- puppet/modules/stdlib/lib/puppet/parser/functions/assert_private.rb
- Function type:
- Ruby 3.x API
Overview
Sets the current class or definition as private. Calling the class or definition from outside the current module will fail.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'puppet/modules/stdlib/lib/puppet/parser/functions/assert_private.rb', line 6 newfunction(:assert_private, :doc => <<-'EOS' Sets the current class or definition as private. Calling the class or definition from outside the current module will fail. EOS ) do |args| raise(Puppet::ParseError, "assert_private(): Wrong number of arguments "+ "given (#{args.size}}) for 0 or 1)") if args.size > 1 scope = self if scope.lookupvar('module_name') != scope.lookupvar('caller_module_name') = nil if args[0] and args[0].is_a? String = args[0] else manifest_name = scope.source.name manifest_type = scope.source.type = (manifest_type.to_s == 'hostclass') ? 'Class' : 'Definition' += " #{manifest_name} is private" end raise(Puppet::ParseError, ) end end |