mirror of
https://github.com/systemd/systemd.git
synced 2024-12-27 07:22:31 +03:00
4ced52595f
On distros using Debian's base-passwd, the name of the group with gid 65534 is nogroup. Currently, systemd-sysusers creates a spurious "nobody" group systemd-sysusers[243]: Creating group nobody with gid 996 That's both confusing and redundant, as the nobody user still has primary group 65534 aka nogroup, and the nobody group simply goes completely unused. So explicitly specify the primary group of the nobody user, and add a line ensuring that that group exists. This is not a problem for Debian (or Ubuntu) itself, as they add their own version of basic.conf in their systemd build logic. But it appears on for example Yocto/OpenEmbedded.
41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
# This file is part of systemd.
|
|
#
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# The superuser
|
|
u root 0 "Super User" /root
|
|
|
|
# The nobody user/group for NFS file systems
|
|
g {{NOBODY_GROUP_NAME}} 65534 - -
|
|
u {{NOBODY_USER_NAME }} 65534:65534 "Nobody" -
|
|
|
|
# Administrator group: can *see* more than normal users
|
|
g adm {{ADM_GID }} - -
|
|
|
|
# Administrator group: can *do* more than normal users
|
|
g wheel {{WHEEL_GID }} - -
|
|
|
|
# Access to shared database of users on the system
|
|
g utmp {{UTMP_GID }} - -
|
|
|
|
# Physical and virtual hardware access groups
|
|
g audio {{AUDIO_GID }} - -
|
|
g cdrom {{CDROM_GID }} - -
|
|
g dialout {{DIALOUT_GID}} - -
|
|
g disk {{DISK_GID }} - -
|
|
g input {{INPUT_GID }} - -
|
|
g kmem {{KMEM_GID }} - -
|
|
g kvm {{KVM_GID }} - -
|
|
g lp {{LP_GID }} - -
|
|
g render {{RENDER_GID }} - -
|
|
g sgx {{SGX_GID }} - -
|
|
g tape {{TAPE_GID }} - -
|
|
g tty {{TTY_GID }} - -
|
|
g video {{VIDEO_GID }} - -
|
|
|
|
# Default group for normal users
|
|
g users {{USERS_GID }} - -
|