Remove deprecation notice for sectionless ceilometer_config

ceilometer_config used to accept section-less configuration name.

Change-Id: I11348ced3bccb1bb88ae493ae1e15017aa360096
This commit is contained in:
Sebastien Badia 2014-07-12 02:20:30 +02:00
parent cca209f8b1
commit ca726ae16d
1 changed files with 1 additions and 13 deletions

View File

@ -4,11 +4,7 @@ Puppet::Type.newtype(:ceilometer_config) do
newparam(:name, :namevar => true) do
desc 'Section/setting name to manage from ceilometer.conf'
validate do |value|
unless value =~ /\S+\/\S+/
fail("Invalid ceilometer_config #{value}, entries without sections are no longer supported, please add an explicit section (probably DEFAULT) to all ceilometer_config resources")
end
end
newvalues(/\S+\/\S+/)
end
newproperty(:value) do
@ -45,12 +41,4 @@ Puppet::Type.newtype(:ceilometer_config) do
defaultto false
end
validate do
if self[:ensure] == :present
if self[:value].nil?
raise Puppet::Error, "Property value must be set for #{self[:name]} when ensure is present"
end
end
end
end