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
in the example below key_type is set private
gnupg_key { 'hkp_server_20BC0A86': ensure => present, key_id => '20BC0A86', user => 'root', key_server => 'hkp://pgp.mit.edu/', key_type => private, }
which produces the error Use of reserved word: private, must be quoted if intended to be a String value
Use of reserved word: private, must be quoted if intended to be a String value
In our use we are now quoting private, e.g.
gnupg_key { 'hkp_server_20BC0A86': ensure => present, key_id => '20BC0A86', user => 'root', key_server => 'hkp://pgp.mit.edu/', key_type => 'private', }
and the module is continuing to function as expected. Based on that I believe it just needs to be adjusted in the ready to be quoted as a string.
The text was updated successfully, but these errors were encountered:
tnx ... i will fix the example in the documentation
Sorry, something went wrong.
I can submit a pull request for it.
sure if you can do that would be great.
No branches or pull requests
in the example below key_type is set private
which produces the error
Use of reserved word: private, must be quoted if intended to be a String value
In our use we are now quoting private, e.g.
and the module is continuing to function as expected. Based on that I believe it just needs to be adjusted in the ready to be quoted as a string.
The text was updated successfully, but these errors were encountered: