diff options
author | Martin Kosek <mkosek@redhat.com> | 2012-09-20 10:26:17 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2012-09-20 10:36:13 +0200 |
commit | 459016d12b851aa0ba50554775fe90e532e32b58 (patch) | |
tree | 884374d5d8dbd6da95b0e420c5894e681dab8c0a /ipalib | |
parent | ef7b8ab764420baa4e959c0bf060e390b314c18f (diff) | |
download | freeipa-459016d12b851aa0ba50554775fe90e532e32b58.tar.gz freeipa-459016d12b851aa0ba50554775fe90e532e32b58.tar.xz freeipa-459016d12b851aa0ba50554775fe90e532e32b58.zip |
Fix idrange plugin help
range plugin was renamed to idrange. Update plugin help to reflect
this change.
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/plugins/idrange.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/plugins/idrange.py b/ipalib/plugins/idrange.py index efa906428..ee50613bb 100644 --- a/ipalib/plugins/idrange.py +++ b/ipalib/plugins/idrange.py @@ -60,8 +60,8 @@ EXAMPLE: Add a new ID range for a trusted domain Since there might be more than one trusted domain the domain SID must be given while creating the ID range. - ipa range-add --base-id=1200000 --range-size=200000 --rid-base=0 \\ - --dom-sid=S-1-5-21-123-456-789 trusted_dom_range + ipa idrange-add --base-id=1200000 --range-size=200000 --rid-base=0 \\ + --dom-sid=S-1-5-21-123-456-789 trusted_dom_range This ID range is then used by the IPA server and the SSSD IPA provider to assign Posix UIDs to users from the trusted domain. @@ -81,8 +81,8 @@ To create an ID range for the local domain it is not necessary to specify a domain SID. But since it is possible that a user and a group can have the same value as Posix ID a second RID interval is needed to handle conflicts. - ipa range-add --base-id=1200000 --range-size=200000 --rid-base=1000 \\ - --secondary-rid-base=1000000 local_range + ipa idrange-add --base-id=1200000 --range-size=200000 --rid-base=1000 \\ + --secondary-rid-base=1000000 local_range The data from the ID ranges of the local domain are used by the IPA server internally to assign SIDs to IPA users and groups. The SID will then be stored |