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
proxy_host shouldn't be boolean as it can not be used as a paramterized class in foreman due to foreman's parameter validation.
proxy_host should be undef by default and the switch case to set ensure should be changed from
.. false => absent ..
to .. undef => absent ..
this would make it possible to set the default value (in foreman) to an empty string meaning not adding a proxy.
The text was updated successfully, but these errors were encountered:
changed proxy_host default value from false to undef. fixes puppetlab…
0207fcd
…s#211
bbfa2cf
Merge pull request #215 from lotherk/proxy_val_no_boolean
0e82e54
changed proxy_host default value from true to undef. fixes #211
334f403
…s#211 (cherry picked from commit 0207fcd)
No branches or pull requests
proxy_host shouldn't be boolean as it can not be used as a paramterized class in foreman due to foreman's parameter validation.
proxy_host should be undef by default and the switch case to set ensure should be changed from
..
false => absent
..
to
..
undef => absent
..
this would make it possible to set the default value (in foreman) to an empty string meaning not adding a proxy.
The text was updated successfully, but these errors were encountered: