diff options
author | Jan Cholasta <jcholast@redhat.com> | 2012-02-07 10:29:10 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-02-10 13:30:01 -0500 |
commit | 04d27ffd7c52f7519b25ff8b8896a901c0439898 (patch) | |
tree | a3f72a9d2b6980dde971c26771fdbafb0775f3dd /src | |
parent | 38f98a00917c97f0b9df2be134327b6513e6c68f (diff) | |
download | sssd-04d27ffd7c52f7519b25ff8b8896a901c0439898.tar.gz sssd-04d27ffd7c52f7519b25ff8b8896a901c0439898.tar.bz2 sssd-04d27ffd7c52f7519b25ff8b8896a901c0439898.zip |
Add ssh service to sssd.api.conf
Diffstat (limited to 'src')
-rwxr-xr-x | src/config/SSSDConfigTest.py | 6 | ||||
-rw-r--r-- | src/config/etc/sssd.api.conf | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py index 16dbedfc..a64a7361 100755 --- a/src/config/SSSDConfigTest.py +++ b/src/config/SSSDConfigTest.py @@ -1156,7 +1156,8 @@ class SSSDConfigTestSSSDConfig(unittest.TestCase): 'nss', 'pam', 'sudo', - 'autofs'] + 'autofs', + 'ssh'] for section in control_list: self.assertTrue(sssdconfig.has_section(section), "Section [%s] missing" % @@ -1247,7 +1248,8 @@ class SSSDConfigTestSSSDConfig(unittest.TestCase): 'pam', 'nss', 'sudo', - 'autofs' ] + 'autofs', + 'ssh'] service_list = sssdconfig.list_services() for service in control_list: self.assertTrue(service in service_list, diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index fa5cf8ba..93434635 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -52,6 +52,9 @@ sudo_cache_timeout = int, None, false # autofs service autofs_negative_timeout = int, None, false +[ssh] +# ssh service + [provider] #Available provider types id_provider = str, None, true |