From cbc90d38347f8ca61de2208b16ffc76f9fd5938c Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Tue, 2 Oct 2012 18:53:53 -0700 Subject: Make value a property This commit converts value to a property so that it can be managed and modified when a file already has a value set. It was previously treating the line creation state the same as the update case, which is not in alignment with Puppet's model. --- lib/puppet/type/ini_setting.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lib/puppet/type') diff --git a/lib/puppet/type/ini_setting.rb b/lib/puppet/type/ini_setting.rb index 50b6b38..4506231 100644 --- a/lib/puppet/type/ini_setting.rb +++ b/lib/puppet/type/ini_setting.rb @@ -17,10 +17,6 @@ Puppet::Type.newtype(:ini_setting) do desc 'The name of the setting to be defined.' end - newparam(:value) do - desc 'The value of the setting to be defined.' - end - newparam(:path) do desc 'The ini file Puppet will ensure contains the specified setting.' validate do |value| @@ -43,4 +39,9 @@ Puppet::Type.newtype(:ini_setting) do end end + newproperty(:value) do + desc 'The value of the setting to be defined.' + end + + end -- cgit v1.2.3