1From 8c8a0b6ba199327d2eafefd6611353e1c483a854 Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Wed, 5 Dec 2018 10:00:36 +0800
4Subject: [PATCH] fix pam.conf
5
6oe doesn't support "@include", use the concrete directive instead.
7
8Upstream-Status: Pending
9
10Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
11Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
12---
13 pam.conf | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16diff --git a/pam.conf b/pam.conf
17index 3674c0a..2f8d586 100644
18--- a/pam.conf
19+++ b/pam.conf
20@@ -2,9 +2,9 @@
21 # The PAM configuration file for the at daemon
22 #
23
24-@include common-auth
25-@include common-account
26+auth       include    common-auth
27+account     include    common-account
28 session    required   pam_loginuid.so
29-@include common-session-noninteractive
30+session    include    common-session-noninteractive
31 session    required   pam_limits.so
32 auth	required	pam_env.so user_readenv=1
33--
342.7.4
35
36