From 901ccc1393a7e494f7b1b64eaeb2f7809056aafa Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 2 Jun 2010 14:08:50 -0400 Subject: First pass at per-command documentation --- ipalib/plugins/passwd.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'ipalib/plugins/passwd.py') diff --git a/ipalib/plugins/passwd.py b/ipalib/plugins/passwd.py index 50e99c24..f4f722f1 100644 --- a/ipalib/plugins/passwd.py +++ b/ipalib/plugins/passwd.py @@ -17,7 +17,24 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Password changes +User password changes + +Sets a user password. Normally a user can only change their own password. + +If someone other than user changes a password (e.g. helpdesk resets it) +then the password will need to be changed the first time it is used. +This is so the end-user is the only one that knows the password. + +Password policy will control how often a password may be changed, +what strength requirements there are and long the password history is. + +EXAMPLES: + + Reset your own password: + ipa passwd + + Change another user's password: + ipa passwd tuser1 """ from ipalib import api, errors, util -- cgit