27 lines
672 B
Diff
27 lines
672 B
Diff
|
|
From 2807b7704fe1abbd1eb68eb6c8f6c2f430bdf12b Mon Sep 17 00:00:00 2001
|
|||
|
|
From: ouyangminxiang <ouyangminxiang@kylinos.com.cn >
|
|||
|
|
Date: Wed, 30 Mar 2022 15:47:25 +0800
|
|||
|
|
Subject: [PATCH] exclude pcpqa user who cannot login because of SELinux
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
src/user-classify.c | 3 ++-
|
|||
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|||
|
|
|
|||
|
|
diff --git a/src/user-classify.c b/src/user-classify.c
|
|||
|
|
index 9db1c9a..cbfe177 100644
|
|||
|
|
--- a/src/user-classify.c
|
|||
|
|
+++ b/src/user-classify.c
|
|||
|
|
@@ -51,7 +51,8 @@ static const char *default_excludes[] = {
|
|||
|
|
"man",
|
|||
|
|
"at",
|
|||
|
|
"gdm",
|
|||
|
|
- "gnome-initial-setup"
|
|||
|
|
+ "gnome-initial-setup",
|
|||
|
|
+ "pcpqa"
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
static gboolean
|
|||
|
|
--
|
|||
|
|
2.33.0
|
|||
|
|
|