From f2f1ed63f5bebaea76039733c1a1aed7d8ff6588 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 22 Feb 2013 08:48:50 -0500 Subject: Update plugin docstrings (topic help) to reflect dropped CSV support https://fedorahosted.org/freeipa/ticket/3352 --- ipalib/plugins/selfservice.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'ipalib/plugins/selfservice.py') diff --git a/ipalib/plugins/selfservice.py b/ipalib/plugins/selfservice.py index 78986263..b2ea7677 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" -- cgit