Skip to content

Commit

Permalink
Version 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaerlocher authored Oct 5, 2020
2 parents 3113706 + 568d4e0 commit cdaa23c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
and [human-readable changelog](https://keepachangelog.com/en/1.0.0/).

## 2.2.3

### Fixed

- Fixed the problem by removing the options `GSSAPIAuthentication` and `GSSAPICleanupCredentials` if not used from the config.
- Fixed Forgotten default vars added to the variables.

## 2.2.2

### Fixed
Expand Down
4 changes: 3 additions & 1 deletion templates/opensshd.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,11 @@ KerberosTicketCleanup yes
#KerberosGetAFSToken no
{% endif %}

{% if ssh_gssapi_support %}
# Only enable GSSAPI authentication if it is configured.
GSSAPIAuthentication {{ 'yes' if ssh_gssapi_support else 'no' }}
GSSAPIAuthentication yes
GSSAPICleanupCredentials yes
{% endif %}

# In case you don't use PAM (`UsePAM no`), you can alternatively restrict users and groups here. For key-based authentication this is not necessary, since all keys must be explicitely enabled.
{% if ssh_deny_users -%}
Expand Down
1 change: 1 addition & 0 deletions vars/Oracle Linux-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
sshd_service_name: sshd
ssh_owner: root
ssh_group: root
sshd_sftp_subsystem: "sftp internal-sftp -l INFO -f LOCAL6"
ssh_selinux_dependency_packages:
- policycoreutils-python-utils
- checkpolicy
1 change: 1 addition & 0 deletions vars/RedHat-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
sshd_service_name: sshd
ssh_owner: root
ssh_group: root
sshd_sftp_subsystem: "sftp internal-sftp -l INFO -f LOCAL6"
ssh_selinux_dependency_packages:
- policycoreutils-python-utils
- checkpolicy
1 change: 1 addition & 0 deletions vars/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ sshd_service_name: ssh
sshd_config_path: /etc/ssh
ssh_owner: root
ssh_group: root
sshd_sftp_subsystem: "sftp internal-sftp -l INFO -f LOCAL6"
ssh_selinux_dependency_packages:
- policycoreutils
- checkpolicy

0 comments on commit cdaa23c

Please sign in to comment.