summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/getvar.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/getvar.rb')
-rw-r--r--lib/puppet/parser/functions/getvar.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/getvar.rb b/lib/puppet/parser/functions/getvar.rb
index fb336b6..ae9c869 100644
--- a/lib/puppet/parser/functions/getvar.rb
+++ b/lib/puppet/parser/functions/getvar.rb
@@ -20,7 +20,9 @@ module Puppet::Parser::Functions
end
begin
- self.lookupvar("#{args[0]}")
+ catch(:undefined_variable) do
+ self.lookupvar("#{args[0]}")
+ end
rescue Puppet::ParseError # Eat the exception if strict_variables = true is set
end