forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
containers: Fix duplicate group name for gid=0
The definitions of group entries for gid=0 used the same names as previously defined groups, which gives misleading `ls -l` output in the container bash-5.0$ stat /usr/bin/alias | grep Gid Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ qemu) bash-5.0$ ls -l /usr/bin/alias -rwxr-xr-x. 1 root qemu 33 Jan 1 1970 /usr/bin/alias bash-5.0$ id uid=107(qemu) gid=107(qemu) groups=107(qemu) This seems like a copy+paste accident. Rename the groups to 'root' Signed-off-by: Cole Robinson <[email protected]>
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters