diff options
author | Iker Pedrosa <ipedrosa@redhat.com> | 2022-02-17 10:24:03 +0100 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2022-02-21 08:00:00 +0000 |
commit | 370064ef6f99581b08d473a42bb3417d5dda3e4e (patch) | |
tree | 4343c1e67291b5458bb0fa977ac50cebb3f5fa87 /configure.ac | |
parent | a35e092e24ee7632346a0e1b4a203c04d4cd2c62 (diff) | |
download | pam-370064ef6f99581b08d473a42bb3417d5dda3e4e.tar.gz pam-370064ef6f99581b08d473a42bb3417d5dda3e4e.tar.bz2 pam-370064ef6f99581b08d473a42bb3417d5dda3e4e.zip |
pam_usertype: only use SYS_UID_MAX for system users
* modules/pam_usertype/pam_usertype.c (pam_usertype_is_system): Stop
using SYS_UID_MIN to check if it is a system account, because all
accounts below the SYS_UID_MAX are system users.
* modules/pam_usertype/pam_usertype.8.xml: Remove reference to SYS_UID_MIN
as it is no longer used to calculate the system accounts.
* configure.ac: Remove PAM_USERTYPE_SYSUIDMIN.
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1949137
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 639fc1ad..79113ad1 100644 --- a/configure.ac +++ b/configure.ac @@ -632,11 +632,6 @@ test -n "$opt_uidmin" || opt_uidmin=1000 AC_DEFINE_UNQUOTED(PAM_USERTYPE_UIDMIN, $opt_uidmin, [Minimum regular user uid.]) -AC_ARG_WITH([sysuidmin], AS_HELP_STRING([--with-sysuidmin=<number>],[default value for system user min uid (101)]), opt_sysuidmin=$withval) -test -n "$opt_sysuidmin" || - opt_sysuidmin=101 -AC_DEFINE_UNQUOTED(PAM_USERTYPE_SYSUIDMIN, $opt_sysuidmin, [Minimum system user uid.]) - AC_ARG_WITH([kernel-overflow-uid], AS_HELP_STRING([--with-kernel-overflow-uid=<number>],[kernel overflow uid, default (uint16_t)-2=65534]), opt_kerneloverflowuid=$withval) test -n "$opt_kerneloverflowuid" || opt_kerneloverflowuid=65534 |