summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/hbacsvc.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/hbacsvc.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/hbacsvc.py')
-rw-r--r--ipalib/plugins/hbacsvc.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/ipalib/plugins/hbacsvc.py b/ipalib/plugins/hbacsvc.py
index 2383d70c..d5302cde 100644
--- a/ipalib/plugins/hbacsvc.py
+++ b/ipalib/plugins/hbacsvc.py
@@ -24,16 +24,17 @@ must match the service name that PAM is evaluating.
EXAMPLES:
- Create a new service:
+ Add a new HBAC service:
ipa hbacsvc-add tftp
- Update a service:
- ipa hbacsvc-mod --desc='TFTP service' tftp
+ Modify an existing HBAC service:
+ ipa hbacsvc-mod --desc="TFTP service" tftp
- Find a service (this will find 2, the ftp service and the new tftp service):
+ Search for HBAC services. This example will return two results, the FTP
+ service and the newly-added tftp service:
ipa hbacsvc-find ftp
- Remove a service:
+ Delete an HBAC service:
ipa hbacsvc-del tftp
"""
@@ -78,7 +79,7 @@ api.register(hbacsvc)
class hbacsvc_add(LDAPCreate):
"""
- Add new HBAC service.
+ Add a new HBAC service.
"""
msg_summary = _('Added service "%(value)s"')
@@ -96,7 +97,7 @@ api.register(hbacsvc_del)
class hbacsvc_mod(LDAPUpdate):
"""
- Modify HBAC service.
+ Modify an HBAC service.
"""
api.register(hbacsvc_mod)
@@ -112,7 +113,7 @@ api.register(hbacsvc_find)
class hbacsvc_show(LDAPRetrieve):
"""
- Display HBAC service.
+ Display information about an HBAC service.
"""
api.register(hbacsvc_show)