From 4f2a6e0a25cd5d92bdd436d23963f77b86f818ea Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 3 Jan 2011 15:00:35 -0500 Subject: Don't use Class of Service for account activation, use attribute. To support group-based account disablement we created a Class of Service where group membership controlled whether an account was active or not. Since we aren't doing group-based account locking drop that and use nsaccountlock directly. ticket 568 --- ipalib/plugins/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib') diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py index f1686291c..3d9b7e6d4 100644 --- a/ipalib/plugins/user.py +++ b/ipalib/plugins/user.py @@ -204,7 +204,7 @@ class user(LDAPObject): label=_('Car License'), ), Bool('nsaccountlock?', - label=_('Account activation status:'), + label=_('Account activation status'), flags=['no_create', 'no_update', 'no_search'], ), ) -- cgit