[Freeipa-devel] [PATCH] one-liner fix for ipa-adduser

Karl MacMillan kmacmill at redhat.com
Fri Aug 17 20:33:36 UTC 2007


On Fri, 2007-08-17 at 11:46 -0400, Rob Crittenden wrote:
> givenname was made lower-case in ipaclient.py so it needs to be that way 
> here too otherwise chaos ensues. A case-insensitive way to do this is in 
> the queue.
> 
> diff -r 93f541ca7962 ipa-admintools/ipa-adduser
> --- a/ipa-admintools/ipa-adduser        Fri Aug 17 11:57:51 2007 -0400
> +++ b/ipa-admintools/ipa-adduser        Fri Aug 17 12:07:12 2007 -0400
> @@ -61,7 +61,7 @@ def main():
>       if len(args) != 2:
>           usage()
> 
> -    user['givenName'] = options.gn
> +    user['givenname'] = options.gn
>       user['sn'] = options.sn
>       user['uid'] = args[1]
>       if options.gecos:


Merged.




More information about the Freeipa-devel mailing list