summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-01-03 15:00:35 -0500
committerRob Crittenden <rcritten@redhat.com>2011-01-04 17:09:56 -0500
commit4f2a6e0a25cd5d92bdd436d23963f77b86f818ea (patch)
treec5ff38c20f166253708207285fa274e654160d9d /ipalib
parente7afe1dec202de8064b90c526f0d4a2fdf224824 (diff)
downloadfreeipa-4f2a6e0a25cd5d92bdd436d23963f77b86f818ea.tar.gz
freeipa-4f2a6e0a25cd5d92bdd436d23963f77b86f818ea.tar.xz
freeipa-4f2a6e0a25cd5d92bdd436d23963f77b86f818ea.zip
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
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugins/user.py2
1 files changed, 1 insertions, 1 deletions
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'],
),
)