summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/selfservice.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-02-22 08:48:50 -0500
committerMartin Kosek <mkosek@redhat.com>2013-02-22 17:20:35 +0100
commitf2f1ed63f5bebaea76039733c1a1aed7d8ff6588 (patch)
treec00227e8ded770595bd7e651a6a1914c6e0b8f08 /ipalib/plugins/selfservice.py
parent5752b35d163760a564bb3fbef361116c5c1e6557 (diff)
downloadfreeipa-f2f1ed63f5bebaea76039733c1a1aed7d8ff6588.tar.gz
freeipa-f2f1ed63f5bebaea76039733c1a1aed7d8ff6588.tar.xz
freeipa-f2f1ed63f5bebaea76039733c1a1aed7d8ff6588.zip
Update plugin docstrings (topic help) to reflect dropped CSV support
https://fedorahosted.org/freeipa/ticket/3352
Diffstat (limited to 'ipalib/plugins/selfservice.py')
-rw-r--r--ipalib/plugins/selfservice.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/ipalib/plugins/selfservice.py b/ipalib/plugins/selfservice.py
index 78986263a..b2ea7677a 100644
--- a/ipalib/plugins/selfservice.py
+++ b/ipalib/plugins/selfservice.py
@@ -37,12 +37,14 @@ A Self-service permission defines what an object can change in its own entry.
EXAMPLES:
- Add a self-service rule to allow users to manage their address:
- ipa selfservice-add --permissions=write --attrs=street,postalCode,l,c,st "Users manage their own address"
+ Add a self-service rule to allow users to manage their address (using Bash
+ brace expansion):
+ ipa selfservice-add --permissions=write --attrs={street,postalCode,l,c,st} "Users manage their own address"
When managing the list of attributes you need to include all attributes
- in the list, including existing ones. Add telephoneNumber to the list:
- ipa selfservice-mod --attrs=street,postalCode,l,c,st,telephoneNumber "Users manage their own address"
+ in the list, including existing ones.
+ Add telephoneNumber to the list (using Bash brace expansion):
+ ipa selfservice-mod --attrs={street,postalCode,l,c,st,telephoneNumber} "Users manage their own address"
Display our updated rule:
ipa selfservice-show "Users manage their own address"