diff options
author | Sumit Bose <sbose@redhat.com> | 2011-11-30 13:29:10 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2012-06-28 13:08:26 +0200 |
commit | 316aac5a8d03587872883a645ba6ff8443f062fe (patch) | |
tree | 33849455024f4c09868859d86ecf09d7822bfab2 /ipaserver/install/service.py | |
parent | ac6afd31f72d95bc23cde2b22a5fec8267147914 (diff) | |
download | freeipa-316aac5a8d03587872883a645ba6ff8443f062fe.tar.gz freeipa-316aac5a8d03587872883a645ba6ff8443f062fe.tar.xz freeipa-316aac5a8d03587872883a645ba6ff8443f062fe.zip |
Add external domain extop DS plugin
This extop can be used by clients of the IPA domain, e.g. sssd, to
retrieve data from trusted external domains. It can be used e.g. to map
Windows SIDs to user or groups names and back.
Diffstat (limited to 'ipaserver/install/service.py')
-rw-r--r-- | ipaserver/install/service.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py index a3d09fcd6..5cc7ae639 100644 --- a/ipaserver/install/service.py +++ b/ipaserver/install/service.py @@ -42,7 +42,8 @@ SERVICE_LIST = { 'MEMCACHE':('ipa_memcached', 39), 'HTTP':('httpd', 40), 'CA':('pki-cad', 50), - 'ADTRUST':('smb', 60) + 'ADTRUST':('smb', 60), + 'EXTID':('winbind', 70) } def print_msg(message, output_fd=sys.stdout): |