summaryrefslogtreecommitdiff
path: root/lib/puppet/provider/file_line
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/provider/file_line')
-rw-r--r--lib/puppet/provider/file_line/ruby.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/provider/file_line/ruby.rb b/lib/puppet/provider/file_line/ruby.rb
index ea1d44d..d4cdfec 100644
--- a/lib/puppet/provider/file_line/ruby.rb
+++ b/lib/puppet/provider/file_line/ruby.rb
@@ -1,6 +1,6 @@
Puppet::Type.type(:file_line).provide(:ruby) do
def exists?
- if !resource[:replace] and count_matches(match_regex) > 0
+ if resource[:replace].to_s != 'true' and count_matches(match_regex) > 0
true
else
lines.find do |line|
@@ -10,7 +10,7 @@ Puppet::Type.type(:file_line).provide(:ruby) do
end
def create
- unless !resource[:replace] and count_matches(match_regex) > 0
+ unless resource[:replace].to_s != 'true' and count_matches(match_regex) > 0
if resource[:match]
handle_create_with_match
elsif resource[:after]