
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: Ie388eb22a0c75d590c0e853064ed2f6f34e3abeb
11 lines
231 B
Ruby
11 lines
231 B
Ruby
Puppet::Type.type(:cloudkitty_api_uwsgi_config).provide(
|
|
:ini_setting,
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
|
) do
|
|
|
|
def self.file_path
|
|
'/etc/cloudkitty/cloudkitty-api-uwsgi.ini'
|
|
end
|
|
|
|
end
|