summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/time.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/time.rb')
-rw-r--r--lib/puppet/parser/functions/time.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/time.rb b/lib/puppet/parser/functions/time.rb
index f7c1041..e1f5b6f 100644
--- a/lib/puppet/parser/functions/time.rb
+++ b/lib/puppet/parser/functions/time.rb
@@ -10,6 +10,11 @@ module Puppet::Parser::Functions
# The Time Zone argument is optional ...
time_zone = arguments[0] if arguments[0]
+ if (arguments.size != 0) and (arguments.size != 1) then
+ raise(Puppet::ParseError, "time(): Wrong number of arguments "+
+ "given #{arguments.size} for 0 or 1")
+ end
+
time = Time.new
# There is probably a better way to handle Time Zone ...