Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / rstrip.rb
1 #
2 #  rstrip.rb
3 #
4 module Puppet::Parser::Functions
5   newfunction(:rstrip, :type => :rvalue, :doc => <<-DOC
6     Strips leading spaces to the right of the string.
7
8     Note: from Puppet 6.0.0, the compatible function with the same name in Puppet core
9     will be used instead of this function.
10     DOC
11              ) do |arguments|
12
13     raise(Puppet::ParseError, "rstrip(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.empty?
14
15     value = arguments[0]
16
17     unless value.is_a?(Array) || value.is_a?(String)
18       raise(Puppet::ParseError, 'rstrip(): Requires either array or string to work with')
19     end
20
21     result = if value.is_a?(Array)
22                value.map { |i| i.is_a?(String) ? i.rstrip : i }
23              else
24                value.rstrip
25              end
26
27     return result
28   end
29 end
30
31 # vim: set ts=2 sw=2 et :