aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2018-11-26Merge pull request #8 from xrobau/patch-1Josh Cooper
Document 'options' param of ssh_authorized_key
2018-10-31ssh_authorzed_key: Fix invalid 'options' errorNate McCurdy
Prior to this, the example of a valid "options" value for the ssh_authorized_key type was syntactically incorrect; it did not include the closing single quote. Example of incorrect error message: ``` Error: Parameter options failed on Ssh_authorized_key[testkey]: Option from=foo.com is not valid. A single option must either be of the form 'option' or 'option="value". Multiple options must be provided as an array (file: /tmp/test.pp, line: 5) ``` After this, the error shows the correct syntax for specifying an option: ``` Error: Parameter options failed on Ssh_authorized_key[testkey]: Option from=foo.com is not valid. A single option must either be of the form 'option' or 'option="value"'. Multiple options must be provided as an array (file: /tmp/test.pp, line: 5) ```
2018-10-14Update desc fieldRob Thomas
2018-06-25Remove Rubocop Lint/AssignmentInCondition violationJacob Helwig
2018-06-25Remove Rubocop Style/GuardClause violationJacob Helwig
By restructuring this code to use a guard clause style, we can also get rid of the assignment in conditional.
2018-06-25Remove Rubocop Metrics/LineLength violationJacob Helwig
2018-06-21Apply automatic PDK validation cleanupJacob Helwig
2018-06-21Initial sshkey type import from Puppet repositoryJacob Helwig
Imported from dbf5a8964af9b87446542d24f46534cf90f11f59 in the Puppet repo.