-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathprivate.rb
More file actions
22 lines (20 loc) · 863 Bytes
/
private.rb
File metadata and controls
22 lines (20 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
#
# private.rb
#
module Puppet::Parser::Functions
newfunction(:private, doc: <<-'DOC'
@summary
**Deprecated:** Sets the current class or definition as private.
Calling the class or definition from outside the current module will fail.
@return
Sets the current class or definition as private
DOC
) do |args|
warning("private() DEPRECATED: This function will cease to function on Puppet 4; please use assert_private() before upgrading to puppet 4 for backwards-compatibility, or migrate to the new parser's typing system.") # rubocop:disable Layout/LineLength : Cannot shorten this line
unless Puppet::Parser::Functions.autoloader.loaded?(:assert_private)
Puppet::Parser::Functions.autoloader.load(:assert_private)
end
function_assert_private([(args[0] unless args.empty?)])
end
end