> @@ -111,9 +109,16 @@ class Users: > cryptPassword(password, salt=salt), > True) > > + # Add the user to all the groups they should be part of. > + grpLst.append(self.admin.lookupGroupByName(name)) > + for grp in grpLst: > + grp.add(libuser.MEMBERNAME, name) > + self.admin.modifyGroup(grp) > + > # Now set the correct home directory to fix up passwd. > userEnt.set(libuser.HOMEDIRECTORY, homedir) > self.admin.modifyUser(userEnt) > + return True > > def setRootPassword(self, password, isCrypted, salt=None): > rootUser = self.admin.lookupUserByName("root") Perhaps libuser has changed since RHEL5. I thought the user was automatically added to their default group in Rawhide. Is this incorrect? - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list