Bug 594092

Summary: wrong users and groups creation in spec file
Product: Red Hat Enterprise Linux 6 Reporter: Peter Vrabec <pvrabec>
Component: MAKEDEVAssignee: Chris Lumens <clumens>
Status: CLOSED CURRENTRELEASE QA Contact: Release Test Team <release-test-team-automation>
Severity: high Docs Contact:
Priority: high    
Version: 6.0CC: atodorov, dcantrell, ebenes
Target Milestone: rc   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: MAKEDEV-3.24-6 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2010-11-10 19:30:46 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 593683    

Description Peter Vrabec 2010-05-20 14:37:01 UTC
Description of problem:
Please fix user/group creation in your spec file[1]. There were problems when
(UID != GID) && (UID<200) [2]. For example:
tryitd:x:194:482:TryIt:/:/sbin/nologin

Problem was caused by change/fix of shadow-utis behaviour. useradd does not
create group with same GID as user's UID for IDs < 200 (static/reserved) unless
it's done this way:

getent group qemu >/dev/null || groupadd -g 107 -r qemu
getent passwd qemu >/dev/null || \
  useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin \
    -c "qemu user" qemu


This issue should be fixed as soon as possible. Note, it can't be resolved by
any update once we have RHEL6 GA. Please fix it in Fedora too. thnx.

--------
[1] https://fedoraproject.org/wiki/Packaging:UsersAndGroups 
[2] https://bugzilla.redhat.com/show_bug.cgi?id=593683

Comment 1 Chris Lumens 2010-06-07 19:23:26 UTC
Can I get either a QA ack on this so I can do a build, or a nak so I can at least plan appropriately?

Comment 3 Alexander Todorov 2010-07-01 12:39:14 UTC
The spec file for MAKEDEV-3.24-6.el6 included in 0630 nightly has:

%pre
# Add the floopy group and the vcsa user.
getent group floppy >/dev/null || groupadd -g 19 -r -f floppy
getent group vcsa >/dev/null || groupadd -g 69 -r -f vcsa
getent passwd vcsa >/dev/null || \
        useradd -r -g vcsa -d /dev -s /sbin/nologin -u 69 \
        -c "virtual console memory owner" vcsa 2>/dev/null
exit 0

Moving to VERIFIED.

Comment 4 Chris Lumens 2010-07-02 14:23:50 UTC
*** Bug 609226 has been marked as a duplicate of this bug. ***

Comment 5 releng-rhel@redhat.com 2010-11-10 19:30:46 UTC
Red Hat Enterprise Linux 6.0 is now available and should resolve
the problem described in this bug report. This report is therefore being closed
with a resolution of CURRENTRELEASE. You may reopen this bug report if the
solution does not work for you.