Delete unnecessary function

Change-Id: I7dd71064eeee7886781abc3ad290bb12ac89a5c0
This commit is contained in:
Simon Dodsley 2016-07-04 16:50:03 -04:00
parent 824d7686f6
commit 0d10449e1f
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
# Custom function to generate a random hex string of length arg[0].
#
# This is used to ensure we get unique tenant and user IDs that
# are required for the glance image-cache for cinder
module Puppet::Parser::Functions
newfunction(:get_random_id, :type => :rvalue, :doc => "returns a random hex string of length args[0]") do |args|
raise(Puppet::ParseError, "get_random_id(): Wrong number of arguments " +
"given (#{args.size} for 1)") if args.size != 1
numbers = (0..9).to_a
alpha = ('a'..'f').to_a
length = args[0].to_i
CHARS = (alpha + numbers)
id_sub = CHARS.sort_by { rand }.join[0...length]
id = id_sub + id_sub
return id
end
end