On each puppet run, I'm seeing: value changed ['12'] to '12' (corrective) Therefore, this patch switches from :openstackconfig to :ini_setting to make the 2nd run not changing anything. Change-Id: I56a9d9534be8aaee74b1da0c7633359578c74769
11 lines
228 B
Ruby
11 lines
228 B
Ruby
Puppet::Type.type(:placement_api_uwsgi_config).provide(
|
|
:ini_setting,
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
|
) do
|
|
|
|
def self.file_path
|
|
'/etc/placement/placement-api-uwsgi.ini'
|
|
end
|
|
|
|
end
|