diff options
author | varac <varacanero@zeromail.org> | 2013-08-27 18:03:56 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-08-27 18:03:56 +0200 |
commit | 473896f2ca22f5003ea47542ad8026819d2d8613 (patch) | |
tree | 297936a37a0cf217a76a5cee368f7f91430d9f02 /lib/puppet/provider | |
parent | 966f3b349a60b3997e58af1095bbd96671952fac (diff) | |
parent | 2a78cbfaad2acc61d6d8bab715db00c9890adbd7 (diff) |
Merge branch 'master' of git://github.com/puppetlabs/puppetlabs-stdlib into leap_master
Diffstat (limited to 'lib/puppet/provider')
-rw-r--r-- | lib/puppet/provider/file_line/ruby.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/puppet/provider/file_line/ruby.rb b/lib/puppet/provider/file_line/ruby.rb index a3219d3..3cb9f6e 100644 --- a/lib/puppet/provider/file_line/ruby.rb +++ b/lib/puppet/provider/file_line/ruby.rb @@ -1,4 +1,3 @@ - Puppet::Type.type(:file_line).provide(:ruby) do def exists? @@ -35,8 +34,8 @@ Puppet::Type.type(:file_line).provide(:ruby) do def handle_create_with_match() regex = resource[:match] ? Regexp.new(resource[:match]) : nil match_count = lines.select { |l| regex.match(l) }.size - if match_count > 1 - raise Puppet::Error, "More than one line in file '#{resource[:path]}' matches pattern '#{resource[:match]}'" + if match_count > 1 && resource[:multiple].to_s != 'true' + raise Puppet::Error, "More than one line in file '#{resource[:path]}' matches pattern '#{resource[:match]}'" end File.open(resource[:path], 'w') do |fh| lines.each do |l| |