-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README.md #119
base: master
Are you sure you want to change the base?
Update README.md #119
Conversation
Values defined through env-vars must be quoted in order to be correctly placed in .ini-files. Otherwise they will not be interpreted properly.
Thank you for your pull request. Before we can look at it, you'll need to sign a Contributor License Agreement (CLA). Please follow instructions at https://icinga.com/company/contributor-agreement to sign the CLA. After that, please reply here with a comment and we'll verify. Contributors that have not signed yet: @kboenke
|
@cla-bot check |
Thanks for the contribution. |
Hi @kboenke, What exactly do you want to fix with this PR, i.e. what is not interpreted correctly? Best regards, |
@lippserd this is actually a major pitfall for first-time users. It took me two weeks to figure out I need to put certain attributes in quotes (probably those containing special characters). I ended up using a combination of single and double quotes, e.g.:
What still doesn't work is something like:
I looked at the code of the go-ini library but didn't really get anywhere |
The problem isn't that the users aren't told to quote properly, the problem is that the entrypoint doesn't quote properly: |
Values defined through env-vars must be quoted in order to be correctly placed in .ini-files. Otherwise they will not be interpreted properly.