summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/config.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2010-08-24 23:40:32 -0400
committerRob Crittenden <rcritten@redhat.com>2010-08-27 13:31:04 -0400
commit4b6b710ba6ce75ffcb9ced43acee0d55adb6163c (patch)
tree021fc409342115f1a5cbc1978ee5f67069934c4f /ipalib/plugins/config.py
parentea76d8c59af338f6a79ec87d7a931d2c8643e747 (diff)
downloadfreeipa-4b6b710ba6ce75ffcb9ced43acee0d55adb6163c.tar.gz
freeipa-4b6b710ba6ce75ffcb9ced43acee0d55adb6163c.tar.xz
freeipa-4b6b710ba6ce75ffcb9ced43acee0d55adb6163c.zip
Update command documentation based on feedback from docs team.
ticket #158
Diffstat (limited to 'ipalib/plugins/config.py')
-rw-r--r--ipalib/plugins/config.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/ipalib/plugins/config.py b/ipalib/plugins/config.py
index b704a7a26..8b6095f74 100644
--- a/ipalib/plugins/config.py
+++ b/ipalib/plugins/config.py
@@ -18,14 +18,14 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Manage IPA configuration
+Manage the IPA configuration
-Manage default values tha IPA uses and some tuning parameters:
+Manage the default values tha IPA uses and some of its tuning parameters.
- Show the current configuration:
+ To show the current configuration:
ipa config-show
- Modify the configuration:
+ To modify the configuration:
ipa config-mod --maxusername=99
The available options are:
@@ -48,7 +48,7 @@ how many records may be returned on a given search.
Server Configuration.
--enable-migration=BOOL Enable migration mode
- --subject=STR base for certificate subjects (OU=Test,O=Example)
+ --subject=STR Base for certificate subjects (OU=Test,O=Example)
"""
@@ -126,7 +126,7 @@ class config(LDAPObject):
Str('ipacertificatesubjectbase?',
cli_name='subject',
label=_('Certificate Subject base'),
- doc=_('base for certificate subjects (OU=Test,O=Example)'),
+ doc=_('Base for certificate subjects (OU=Test,O=Example)'),
),
)
@@ -153,7 +153,7 @@ api.register(config_mod)
class config_show(LDAPRetrieve):
"""
- Display configuration options.
+ Show the current configuration.
"""
api.register(config_show)