mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
b9ee05c266
On Debian/Ubuntu systems the default passwd/group files use a slightly strange mapping. E.g. in passwd: ``` man❌6:12::/var/cache/man:/sbin/nologin ``` and in group: ``` disk❌6: man❌12: ``` This is not supported in systemd-sysusers right now because sysusers will not re-use an existing uid/gid in its normal mode of operation. Unfortunately this reuse is needed to replicate the default Debian/Ubuntu users/groups. This commit enforces reuse when the "uid:gid" syntax is used to fix this. I also added a test that replicates the Debian base-passwd passwd/group file to ensure things are ok.
11 lines
291 B
Plaintext
11 lines
291 B
Plaintext
# Ensure that the semantic for the uid:gid syntax is correct
|
|
#
|
|
#Type Name ID GECOS HOMEDIR
|
|
g hoge 300 - -
|
|
u foo 301 - -
|
|
|
|
g baz 302 - -
|
|
u aaa 303:302 - -
|
|
u bbb 304:302 - -
|
|
u ccc 305 - -
|