summaryrefslogtreecommitdiff
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorTravis Fields <travis@puppetlabs.com>2015-03-05 11:01:31 -0800
committerTravis Fields <travis@puppetlabs.com>2015-03-05 11:12:51 -0800
commit4a68b224c4a4a986be6b4bf9580fc4f23251e3c6 (patch)
tree333ba3489c504e4c56d851d4ac4e6929b8ba3e96 /lib/puppet/parser
parent56d815bcfc5f57d8dff974fd8bba192c6b141f89 (diff)
Add private function back and forward to assert_private with deprecation warning
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/functions/private.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/private.rb b/lib/puppet/parser/functions/private.rb
new file mode 100644
index 0000000..3b00ba1
--- /dev/null
+++ b/lib/puppet/parser/functions/private.rb
@@ -0,0 +1,17 @@
+#
+# private.rb
+#
+
+module Puppet::Parser::Functions
+ newfunction(:private, :doc => <<-'EOS'
+ DEPRECATED: Sets the current class or definition as private.
+ Calling the class or definition from outside the current module will fail.
+ EOS
+ ) 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.")
+ if !Puppet::Parser::Functions.autoloader.loaded?(:assert_private)
+ Puppet::Parser::Functions.autoloader.load(:assert_private)
+ end
+ function_assert_private([(args[0] unless args.size < 1)])
+ end
+end