We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
all !
set (in hiera):
prosody::custom_options: http_interfaces: - "127.0.0.1" - "::1"
renders to (in prosody.cfg):
http_interfaces = { "127.0.0.1"; "::1" }
it should render to:
http_interfaces = { "127.0.0.1", "::1" }
prosody.cfg is a lua code file. Arrays should be separated with ',' .See https://www.lua.org/pil/11.1.html
The text was updated successfully, but these errors were encountered:
fix array in print_recursive function (in both templates !)
f7962db
closes: voxpupuli#88
Successfully merging a pull request may close this issue.
Affected Puppet, Ruby, OS and module versions/distributions
all !
How to reproduce (e.g Puppet code you use)
set (in hiera):
What are you seeing
renders to (in prosody.cfg):
http_interfaces = { "127.0.0.1"; "::1" }
What behaviour did you expect instead
it should render to:
http_interfaces = { "127.0.0.1", "::1" }
Any additional information you'd like to impart
prosody.cfg is a lua code file. Arrays should be separated with ',' .See https://www.lua.org/pil/11.1.html
The text was updated successfully, but these errors were encountered: