From 31041c0e372a95c5d0737d0c70db187b2c8e1107 Mon Sep 17 00:00:00 2001 From: Krzysztof Wilczynski Date: Thu, 28 Apr 2011 03:44:11 +0100 Subject: First version. Simple time function to use within Puppet DSL. Signed-off-by: Krzysztof Wilczynski --- time.rb | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 time.rb diff --git a/time.rb b/time.rb new file mode 100644 index 0000000..06c4586 --- /dev/null +++ b/time.rb @@ -0,0 +1,36 @@ +# +# time.rb +# + +module Puppet::Parser::Functions + newfunction(:time, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| + + # The Time Zone argument is optional ... + time_zone = arguments[0] if arguments[0] + + time = Time.new + + if time_zone and not time_zone.empty? + original_zone = ENV['TZ'] + + local_time = time.clone + local_time = local_time.utc + + ENV['TZ'] = time_zone + + time = local_time.localtime + + ENV['TZ'] = original_zone + end + + # Calling Time#to_i on a receiver changes it. Trust me I am the Doctor. + result = time.strftime('%s') + result = result.to_i + + return result + end +end + +# vim: set ts=2 sw=2 et : -- cgit v1.2.3