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-python/ipaadminutil.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ipa-python/ipaadminutil.py') diff --git a/ipa-python/ipaadminutil.py b/ipa-python/ipaadminutil.py index 27337642c..5f0b2fa98 100644 --- a/ipa-python/ipaadminutil.py +++ b/ipa-python/ipaadminutil.py @@ -33,7 +33,10 @@ def select_user(counter, users): i = 1 print "%s entries were found. Which one would you like to display?" % counter for ent in users: - print "%s: %s (%s)" % (i, ent.getValues('cn'), ent.getValues('uid')) + if (ent.getValues('givenname')) is not None: + print "%s: %s %s (%s)" % (i, ent.getValues('givenname'), ent.getValues('sn'), ent.getValues('uid')) + else: + print "%s: %s (%s)" % (i, ent.getValues('sn'), ent.getValues('uid')) i += 1 while True: resp = raw_input("Choose one: (1 - %s), 0 for all, q to quit: " % counter) -- cgit