Changeset 1168

Show
Ignore:
Timestamp:
08/23/08 02:00:10 (3 months ago)
Author:
shibuya
Message:

fixed the issue that handler is in infinite loop when admin user is added.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 5100R/trunk/ui/base-user.mod/Makefile

    r1166 r1168  
    88 
    99VERSION=1.2.0 
    10 RELEASE=0BQ1 
     10RELEASE=0BQ2 
    1111 
    1212# add a buildarch if desired 
  • 5100R/trunk/ui/base-user.mod/glue/handlers/root_access.pl

    r257 r1168  
    8888 
    8989    # create the alterroot account if necessary 
    90     if (!getpwnam($root_prefix . $user->{name})) 
     90    my (@pwent) = getpwnam($root_prefix . $user->{name}); 
     91    if ($pwent[0] ne $root_prefix . $user->{name}) 
    9192    { 
    9293        my $alterroot = { 
  • 5100R/trunk/ui/base-user.mod/templates/rpmdefs.tmpl

    r1166 r1168  
    109109 
    110110<begin $CHANGELOG> 
     111* Sat Aug 23 2008 Hisao SHIBUYA <shibuya@bluequartz.org> 1.2.0-0BQ2 
     112- fixed the issue that handler is in infinite loop when admin user is added. 
     113 
    111114* Wed Aug 20 2008 Hisao SHIBUYA <shibuya@bluequartz.org> 1.2.0-0BQ1 
    112115- it stores user information in shadow instead of pwdb.