From 55c94178ebec564cb27a1394a2fa0a970bf03621 Mon Sep 17 00:00:00 2001 From: Krzysztof Wilczynski Date: Sat, 23 Apr 2011 01:18:52 +0100 Subject: [PATCH] Minor changes. Added placeholder for :doc in Puppet's newfunction to fill later. --- load_variables.rb | 4 ++-- persistent_crontab_minutes.rb | 12 +++++++----- random_crontab_minutes.rb | 12 +++++++----- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/load_variables.rb b/load_variables.rb index 304bf00..a6ccc60 100644 --- a/load_variables.rb +++ b/load_variables.rb @@ -67,7 +67,7 @@ This will result in a variable $foo being added and ready for use. end data.each { |param, value| setvar(param, strinterp(value)) } - end # def newfunction -end # module Puppet::Parser::Functions + end +end # vim: set ts=2 sw=2 et : diff --git a/persistent_crontab_minutes.rb b/persistent_crontab_minutes.rb index 5a76868..cd80094 100644 --- a/persistent_crontab_minutes.rb +++ b/persistent_crontab_minutes.rb @@ -2,14 +2,16 @@ # persistent_crontab_minutes.rb # -require 'md5' - module Puppet::Parser::Functions - newfunction(:persistent_crontab_minutes, :type => :rvalue) do |arguments| + newfunction(:persistent_crontab_minutes, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| raise(Puppet::ParseError, "Wrong number of arguments " + "given (#{arguments.size} for 2)") if arguments.size < 2 + require 'md5' + value = 0 job = arguments[0] @@ -55,7 +57,7 @@ module Puppet::Parser::Functions parser.watch_file(file) if File.exists?(file) return value - end # def newfunction -end # module Puppet::Parser::Functions + end +end # vim: set ts=2 sw=2 et : diff --git a/random_crontab_minutes.rb b/random_crontab_minutes.rb index b3fb544..8ab29e1 100644 --- a/random_crontab_minutes.rb +++ b/random_crontab_minutes.rb @@ -2,14 +2,16 @@ # random_crontab_minutes.rb # -require 'md5' - module Puppet::Parser::Functions - newfunction(:random_crontab_minutes, :type => :rvalue) do |arguments| + newfunction(:random_crontab_minutes, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| raise(Puppet::ParseError, "Wrong number of arguments " + "given (#{arguments.size} for 2)") if arguments.size < 2 + require 'md5' + job_name = arguments[0] host = arguments[1] @@ -23,7 +25,7 @@ module Puppet::Parser::Functions value = value < 60 ? value : 59 return value - end # def newfunction -end # module Puppet::Parser::Functions + end +end # vim: set ts=2 sw=2 et :