Merge "Allow customizing separator for api-paste.ini"

This commit is contained in:
Zuul 2021-10-17 21:22:11 +00:00 committed by Gerrit Code Review
commit 6f9a0d3dc4
2 changed files with 10 additions and 0 deletions

View File

@ -45,6 +45,11 @@ Puppet::Type.newtype(:manila_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
['manila::install::end']
end

View File

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