From 21d89c38f22bf3b0c013b72988484c73db6ccecb Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Thu, 23 May 2013 17:41:51 +0200 Subject: Add a domain config attribute for realmd realmd needs to be able to tag various domains with basic info when it configures a domain. --- src/config/SSSDConfigTest.py | 6 ++++-- src/config/etc/sssd.api.conf | 1 + src/man/sssd.conf.5.xml | 9 +++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py index d0365c966..f44f903e9 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 580aeaaaf..0c21bf99b 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 diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index 99337fbba..b902964fb 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -1663,6 +1663,15 @@ override_homedir = /home/%u + + realmd_tags (string) + + + Various tags stored by the realmd configuration service + for this domain. + + + -- cgit