From 76bf420754d5dc38ad71f56be456505115e18357 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 21 Aug 2008 10:32:40 -0400 Subject: Display name as separate attributes instead of showing common name. We allow one to individually set first and last name but we do not automatically update the common name so changes don't seem to happen. 451318 --- ipa-admintools/ipa-finduser | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'ipa-admintools') diff --git a/ipa-admintools/ipa-finduser b/ipa-admintools/ipa-finduser index 40384a3b..919c4b92 100644 --- a/ipa-admintools/ipa-finduser +++ b/ipa-admintools/ipa-finduser @@ -93,7 +93,7 @@ def main(): client = ipaclient.IPAClient(verbose=options.verbose) if options.all is None: - users = client.find_users(args[1], sattrs=['uid','cn','homeDirectory','loginshell']) + users = client.find_users(args[1], sattrs=['uid','givenname','sn','homeDirectory','loginshell']) else: users = client.find_users(args[1], sattrs=None) @@ -121,6 +121,18 @@ def main(): for ent in users: attr = ent.attrList() attr.sort() + + # Always have sn following givenname + try: + l = attr.index('givenname') + try: + attr.remove('sn') + attr.insert(l+1, 'sn') + except ValueError: + pass + except ValueError: + pass + if options.notranslate: labels = {} for a in attr: -- cgit