diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-09-25 16:50:45 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-10-01 17:52:41 +0200 |
commit | fc1a5d1a70aaaa5874ad589957f9e69ce75b3acd (patch) | |
tree | 989cef2542f7a02d5e08e5330da5098a6b2fec76 /meson_options.txt | |
parent | Look at /etc/login.defs for the system_max_[ug]id values (diff) | |
download | systemd-fc1a5d1a70aaaa5874ad589957f9e69ce75b3acd.tar.xz systemd-fc1a5d1a70aaaa5874ad589957f9e69ce75b3acd.zip |
Also parse the minimum uid/gid values
We don't (and shouldn't I think) look at them when determining the type of the
user, but they should be used during user/group allocation. (For example, an
admin may specify SYS_UID_MIN==200 to allow statically numbered users that are
shared with other systems in the range 1–199.)
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index a33b6e27ae..d5ce647ae6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -194,6 +194,10 @@ option('status-unit-format-default', type : 'combo', description : 'use unit name or description in messages by default') option('time-epoch', type : 'integer', value : '-1', description : 'time epoch for time clients') +option('system-alloc-uid-min', type : 'integer', value : '-1', + description : 'minimum system UID used when allocating') +option('system-alloc-gid-min', type : 'integer', value : '-1', + description : 'minimum system GID used when allocating') option('system-uid-max', type : 'integer', value : '-1', description : 'maximum system UID') option('system-gid-max', type : 'integer', value : '-1', |