diff options
author | Stef Walter <stefw@redhat.com> | 2013-05-23 17:41:51 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-05-23 19:55:43 +0200 |
commit | 21d89c38f22bf3b0c013b72988484c73db6ccecb (patch) | |
tree | 4f5143249ef75455720be493fbaaef036b8ac0f4 /src/config | |
parent | 7c100872c56b3bc0bd820e600fefbcfedf179283 (diff) | |
download | sssd-21d89c38f22bf3b0c013b72988484c73db6ccecb.tar.gz sssd-21d89c38f22bf3b0c013b72988484c73db6ccecb.tar.bz2 sssd-21d89c38f22bf3b0c013b72988484c73db6ccecb.zip |
Add a domain config attribute for realmd
realmd needs to be able to tag various domains with basic info
when it configures a domain.
Diffstat (limited to 'src/config')
-rwxr-xr-x | src/config/SSSDConfigTest.py | 6 | ||||
-rw-r--r-- | src/config/etc/sssd.api.conf | 1 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py index d0365c96..f44f903e 100755 --- a/src/config/SSSDConfigTest.py +++ b/src/config/SSSDConfigTest.py @@ -530,7 +530,8 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): 'autofs_provider', 'session_provider', 'hostid_provider', - 'subdomains_provider'] + 'subdomains_provider', + 'realmd_tags'] self.assertTrue(type(options) == dict, "Options should be a dictionary") @@ -880,7 +881,8 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): 'autofs_provider', 'session_provider', 'hostid_provider', - 'subdomains_provider'] + 'subdomains_provider', + 'realmd_tags'] self.assertTrue(type(options) == dict, "Options should be a dictionary") diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index 580aeaaa..0c21bf99 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -114,6 +114,7 @@ fallback_homedir = str, None, false override_shell = str, None, false default_shell = str, None, false description = str, None, false +realmd_tags = str, None, false #Entry cache timeouts entry_cache_user_timeout = int, None, false |