Allow customizing separator for api-paste.ini

The api-paste.ini accepts not only "=" but also ":" and some services
like Barbican have been using ":" for their default api-paste.ini
files.

[composite:main]
use = egg:Paste#urlmap
/: barbican_version
/v1: barbican-api-keystone

This change allows users to use ":" so that they can update the ini
files with keeping it consistent with the default fules

Depends-on: https://review.opendev.org/813614
Change-Id: Ibde258e605c827ef042ae7f4c32db15c816fd038
This commit is contained in:
Takashi Kajinami 2021-10-15 11:18:53 +09:00
parent e4e771c2ba
commit aca4626cb2
2 changed files with 10 additions and 0 deletions

View File

@ -45,6 +45,11 @@ Puppet::Type.newtype(:gnocchi_api_paste_ini) do
defaultto('<SERVICE DEFAULT>')
end
newparam(:key_val_separator) do
desc 'The separator string to use between each setting name and value.'
defaultto('=')
end
autorequire(:anchor) do
['gnocchi::install::end']
end

View File

@ -0,0 +1,5 @@
---
features:
- |
The new ``key_val_separator`` parameter has been added to
the ``gnocchi_api_paste_ini`` resource type.