Replies: 1 comment 1 reply
-
in general there's a difference expressed by the quotes i.e. the value is a single value with spaces when surrounded with quotes, otherwise it denotes several different values/parameters; I'm guessing that |
Beta Was this translation helpful? Give feedback.
-
Hi - I maintain an Ansible role for installing a package that uses apache and could use this library.
The gist of this feature request is to basically be a little more liberal in parsing configurations with and without quotes, such that folks who have to template
.conf
files don't have to do fancy footwork in terms of which config needs quotes and which can't have them.That is, templates can either always add quotes or never have them or both and any combination of quoted and non-quoted configs would work.
For example
OIDCScope
needs quotesmod_auth_openidc/auth_openidc.conf
Line 151 in 109c841
And
OIDCStateMaxNumberOfCookies
doesn't, but it does have spaces in it.mod_auth_openidc/auth_openidc.conf
Line 574 in 109c841
So someone templating a
.conf
file would have to know this and quoteOIDCScope
but ensure thatOIDCStateMaxNumberOfCookies
has no quotes.Not sure about the level of difficulty in doing this (likely a lot) and/or why it's like this now (I'm sure there's a good reason) - but it would sure make the downstream templaters a lot happier.
Beta Was this translation helpful? Give feedback.
All reactions