553f60ab10
This replaces the provider implementation of aodh_config type so that MultiStrOpt, which is used by several options like - oslo_messaging_notifications/driver - oslo_policy/policy_dirs are handled correctly. Change-Id: I4cea52da9531b68598c0d7429fb2ed581ab6c4f7
62 lines
1.4 KiB
Ruby
62 lines
1.4 KiB
Ruby
Puppet::Type.newtype(:zaqar_config) do
|
|
|
|
ensurable
|
|
|
|
newparam(:name, :namevar => true) do
|
|
desc 'Section/setting name to manage from /etc/zaqar/zaqar.conf'
|
|
newvalues(/\S+\/\S+/)
|
|
end
|
|
|
|
newproperty(:value, :array_matching => :all) do
|
|
desc 'The value of the setting to be defined.'
|
|
def insync?(is)
|
|
return true if @should.empty?
|
|
return false unless is.is_a? Array
|
|
return false unless is.length == @should.length
|
|
return (
|
|
is & @should == is or
|
|
is & @should.map(&:to_s) == is
|
|
)
|
|
end
|
|
munge do |value|
|
|
value = value.to_s.strip
|
|
value.capitalize! if value =~ /^(true|false)$/i
|
|
value
|
|
end
|
|
|
|
def is_to_s( currentvalue )
|
|
if resource.secret?
|
|
return '[old secret redacted]'
|
|
else
|
|
return currentvalue
|
|
end
|
|
end
|
|
|
|
def should_to_s( newvalue )
|
|
if resource.secret?
|
|
return '[new secret redacted]'
|
|
else
|
|
return newvalue
|
|
end
|
|
end
|
|
end
|
|
|
|
newparam(:secret, :boolean => true) do
|
|
desc 'Whether to hide the value from Puppet logs. Defaults to `false`.'
|
|
|
|
newvalues(:true, :false)
|
|
|
|
defaultto false
|
|
end
|
|
|
|
newparam(:ensure_absent_val) do
|
|
desc 'A value that is specified as the value property will behave as if ensure => absent was specified'
|
|
defaultto('<SERVICE DEFAULT>')
|
|
end
|
|
|
|
autorequire(:anchor) do
|
|
['zaqar::install::end']
|
|
end
|
|
|
|
end
|