diff options
author | Jan Cholasta <jcholast@redhat.com> | 2012-04-18 07:05:29 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-04-24 09:50:56 -0400 |
commit | 4fa3ef8d8a8a3cddf8025d306c3b90b37dd431bc (patch) | |
tree | 34d80280cfa9ae80139808f6af0df6f668f8ed4e /src/config | |
parent | b35f20cd8ecdc8308a3201e55752fb0443ec6ae4 (diff) | |
download | sssd-4fa3ef8d8a8a3cddf8025d306c3b90b37dd431bc.tar.gz sssd-4fa3ef8d8a8a3cddf8025d306c3b90b37dd431bc.tar.bz2 sssd-4fa3ef8d8a8a3cddf8025d306c3b90b37dd431bc.zip |
SSH: Add support for hashed known_hosts
https://fedorahosted.org/sssd/ticket/1203
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/SSSDConfig.py | 3 | ||||
-rw-r--r-- | src/config/etc/sssd.api.conf | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/config/SSSDConfig.py b/src/config/SSSDConfig.py index 20cd2a28..d38014c2 100644 --- a/src/config/SSSDConfig.py +++ b/src/config/SSSDConfig.py @@ -82,6 +82,9 @@ option_strings = { # [autofs] 'autofs_negative_timeout' : _('Negative cache timeout length (seconds)'), + # [ssh] + 'ssh_hash_known_hosts': _('Whether to hash host names and adresses in the known_hosts file'), + # [provider] 'id_provider' : _('Identity provider'), 'auth_provider' : _('Authentication provider'), diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index 17750ef9..a7bece99 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -58,6 +58,7 @@ autofs_negative_timeout = int, None, false [ssh] # ssh service +ssh_hash_known_hosts = bool, None, false [provider] #Available provider types |