[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: [PATCH] Fix user --groups kickstart option (bug #454418)



Chris Lumens wrote:
@@ -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
In rawhide user is not added automatically, I rechecked it,
only user's primary group is set to the created default group.


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]