systemd/plasma-login-manager: set minimum UID to filter out system accounts

Without this set it will consider way more accounts than user accounts
as accounts you can log into and show them, which is obviously wrong.

Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/8140>
This commit is contained in:
Bart Ribbers 2026-03-08 12:09:14 +01:00 committed by The Friendly Meow (merge) Bot
parent 28a0b4c382
commit 3af802b59c
No known key found for this signature in database

View file

@ -3,7 +3,7 @@
maintainer="team/kde <bribbers@disroot.org>"
pkgname=plasma-login-manager
pkgver=6.6.2
pkgrel=0
pkgrel=1
pkgdesc="A display manager for KDE Plasma"
# armhf blocked by qt6-qtdeclarative
arch="all !armhf"
@ -60,7 +60,9 @@ build() {
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DINSTALL_PAM_CONFIGURATION=OFF
-DINSTALL_PAM_CONFIGURATION=OFF \
-DUID_MIN=1000 \
-DUID_MAX=65000
cmake --build build
}