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 / dos2unix.rb
1 # Custom Puppet function to convert dos to unix format
2 module Puppet::Parser::Functions
3   newfunction(:dos2unix, :type => :rvalue, :arity => 1, :doc => <<-DOC
4     Returns the Unix version of the given string.
5     Takes a single string argument.
6     DOC
7              ) do |arguments|
8
9     unless arguments[0].is_a?(String)
10       raise(Puppet::ParseError, 'dos2unix(): Requires string as argument')
11     end
12
13     arguments[0].gsub(%r{\r\n}, "\n")
14   end
15 end