blob: 6d870dc695338b989c167aa54db3ec71585e596e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# rand.rb
#
module Puppet::Parser::Functions
newfunction(:rand, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
if (arguments.size != 0) and (arguments.size != 1) then
raise(Puppet::ParseError, "rand(): Wrong number of arguments "+
"given #{arguments.size} for 0 or 1")
end
end
end
# vim: set ts=2 sw=2 et :
|