From 8c8a0b6ba199327d2eafefd6611353e1c483a854 Mon Sep 17 00:00:00 2001
|
From: Chen Qi <Qi.Chen@windriver.com>
|
Date: Wed, 5 Dec 2018 10:00:36 +0800
|
Subject: [PATCH] fix pam.conf
|
|
oe doesn't support "@include", use the concrete directive instead.
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
|
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
|
---
|
pam.conf | 6 +++---
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
diff --git a/pam.conf b/pam.conf
|
index 3674c0a..2f8d586 100644
|
--- a/pam.conf
|
+++ b/pam.conf
|
@@ -2,9 +2,9 @@
|
# The PAM configuration file for the at daemon
|
#
|
|
-@include common-auth
|
-@include common-account
|
+auth include common-auth
|
+account include common-account
|
session required pam_loginuid.so
|
-@include common-session-noninteractive
|
+session include common-session-noninteractive
|
session required pam_limits.so
|
auth required pam_env.so user_readenv=1
|
--
|
2.7.4
|