Files
puppet-cloudkitty/lib/puppet/provider/cloudkitty_api_uwsgi_config/ini_setting.rb
Thomas Goirand 4c43a1e29b Debian api_uwsgi_config: Switch to :ini_setting
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
2021-04-21 18:15:41 +02:00

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