Skip to content

Commit

Permalink
Fix typo's
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Mar 11, 2024
1 parent 65a9cbb commit 4cbc710
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ None
* `ssh_server_allow_users`: [default: `[]`]: A list of user name patterns. If specified, login is allowed only for user names that match one of the patterns
* `ssh_server_deny_groups`: [default: `[]`]: A list of group name patterns. If specified, login is disallowed for users whose primary group or supplementary group list matches one of the patterns
* `ssh_server_deny_users`: [default: `[]`]: A list of user name patterns. If specified, login is disallowed for user names that match one of the patterns
* `ssh_server_autorized_keys_command`: [optional]: Specifies a program to be used to look up the user's public keys
* `ssh_server_autorized_keys_command_user`: [default: `nobody`]: Specifies the user under whose account the `AuthorizedKeysCommand` is run
* `ssh_server_authorized_keys_command`: [optional]: Specifies a program to be used to look up the user's public keys
* `ssh_server_authorized_keys_command_user`: [default: `nobody`]: Specifies the user under whose account the `AuthorizedKeysCommand` is run

## Dependencies

Expand Down
4 changes: 2 additions & 2 deletions templates/etc/ssh/sshd_config.j2
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ PubkeyAuthentication {{ ssh_server_pubkey_authentication | bool | ternary('yes',
AuthorizedKeysFile {{ ssh_server_authorized_keys_file }}

{% if ssh_server_autorized_keys_command is defined %}
AuthorizedKeysCommand {{ ssh_server_autorized_keys_command }}
AuthorizedKeysCommandUser {{ ssh_server_autorized_keys_command_user }}
AuthorizedKeysCommand {{ ssh_server_authorized_keys_command }}
AuthorizedKeysCommandUser {{ ssh_server_authorized_keys_command_user }}
{% endif %}

# Don't read the user's ~/.rhosts and ~/.shosts files
Expand Down

0 comments on commit 4cbc710

Please sign in to comment.