da8a3aa022
In Mitaka Glance v3 was moved to stand alone service [1] - now it's called Glance Artifacts Repository (Glare). This patch adds appropriate service managing, package installation, configuration and related spec tests. [1] I5b7bd4cdcc5f2a40fc4a5f74bcc422fd700c4fb0 Change-Id: I3371d1d57486e79ccfae565417f2195d3ae66bc9 Closes-bug: #1555697
57 lines
1.2 KiB
Ruby
57 lines
1.2 KiB
Ruby
Puppet::Type.newtype(:glance_glare_paste_ini) do
|
|
|
|
ensurable
|
|
|
|
newparam(:name, :namevar => true) do
|
|
desc 'Section/setting name to manage from glance-glare-paste.ini'
|
|
newvalues(/\S+\/\S+/)
|
|
end
|
|
|
|
newproperty(:value) do
|
|
desc 'The value of the setting to be defined.'
|
|
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(:package) do
|
|
if Facter.value(:osfamily) == 'Debian'
|
|
'glance-glare'
|
|
elsif Facter.value(:osfamily) == 'RedHat'
|
|
'openstack-glance'
|
|
end
|
|
end
|
|
|
|
end
|