diff options
author | Dominic Cleal <dcleal@redhat.com> | 2015-08-04 09:59:53 +0100 |
---|---|---|
committer | Dominic Cleal <dcleal@redhat.com> | 2015-08-04 09:59:53 +0100 |
commit | a7adcda803abe82e6a16e2410c10d58abedbd82d (patch) | |
tree | e4bdbfb53098c64a2fcc10089c2b5e6dd0f8675c /lib/puppet/type | |
parent | e815da59620c4fe7ae3e612b99ef20e8924f8f23 (diff) | |
download | puppet-stdlib-a7adcda803abe82e6a16e2410c10d58abedbd82d.tar.gz puppet-stdlib-a7adcda803abe82e6a16e2410c10d58abedbd82d.tar.bz2 |
(MODULES-2316) Change file_type boolean parameter to symbols
Puppet's boolean parameter type is only available in Puppet 3.3 and
higher, so change file_type's new "replace" parameter to a regular
parameter with true and false as possible values. This matches the
existing "multiple" parameter.
Diffstat (limited to 'lib/puppet/type')
-rw-r--r-- | lib/puppet/type/file_line.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/type/file_line.rb b/lib/puppet/type/file_line.rb index 190105c..4a96ba7 100644 --- a/lib/puppet/type/file_line.rb +++ b/lib/puppet/type/file_line.rb @@ -1,4 +1,3 @@ -require 'puppet/parameter/boolean' Puppet::Type.newtype(:file_line) do desc <<-EOT @@ -79,8 +78,9 @@ Puppet::Type.newtype(:file_line) do end end - newparam(:replace, :boolean => true, :parent => Puppet::Parameter::Boolean) do + newparam(:replace) do desc 'If true, replace line that matches. If false, do not write line if a match is found' + newvalues(true, false) defaultto true end |