Coverage for ipalib/plugins/realmdomains : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Authors: # Ana Krivokapic <akrivoka@redhat.com> # # Copyright (C) 2013 Red Hat # see file 'COPYING' for use and warranty information # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>.
Realm domains
Manage the list of domains associated with IPA realm.
EXAMPLES:
Display the current list of realm domains: ipa realmdomains-show
Replace the list of realm domains: ipa realmdomains-mod --domain=example.com ipa realmdomains-mod --domain={example1.com,example2.com,example3.com}
Add a domain to the list of realm domains: ipa realmdomains-mod --add-domain=newdomain.com
Delete a domain from the list of realm domains: ipa realmdomains-mod --del-domain=olddomain.com """)
""" List of domains associated with IPA realm. """
Str('associateddomain+', _domain_name_validator, cli_name='domain', label=_('Domain'), ), Str('add_domain?', _domain_name_validator, cli_name='add_domain', label=_('Add domain'), ), Str('del_domain?', _domain_name_validator, cli_name='del_domain', label=_('Delete domain'), ), )
Flag('force', label=_('Force'), doc=_('Force adding domain even if not in DNS'), ), )
# If --add-domain or --del-domain options were provided, read # the curent list from LDAP, modify it, and write the changes back
|