[OE-core] [PATCH] shadow: fix pam configs for chpasswd, newusers
Hongxu Jia
hongxu.jia at windriver.com
Fri Jul 7 02:56:33 UTC 2017
From: "yadi.hu at windriver.com" <yadi.hu at windriver.com>
While pam is enabled:
...
DISTRO_FEATURES_append = " pam"
...
Fix below errors on target:
...
root at qemux86:~# newusers
newusers: PAM: Authentication failure
root at qemux86:~# chpasswd
chpasswd: PAM: Authentication failure
...
The configs copied from "chgpasswd" which command works with pam.
Signed-off-by: Hu <yadi.hu at windriver.com>
Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>
---
meta/recipes-extended/shadow/files/pam.d/chpasswd | 2 ++
meta/recipes-extended/shadow/files/pam.d/newusers | 2 ++
2 files changed, 4 insertions(+)
diff --git a/meta/recipes-extended/shadow/files/pam.d/chpasswd b/meta/recipes-extended/shadow/files/pam.d/chpasswd
index 9e3efa6..b769d92 100644
--- a/meta/recipes-extended/shadow/files/pam.d/chpasswd
+++ b/meta/recipes-extended/shadow/files/pam.d/chpasswd
@@ -1,4 +1,6 @@
# The PAM configuration file for the Shadow 'chpasswd' service
#
+auth sufficient pam_rootok.so
+account required pam_permit.so
password include common-password
diff --git a/meta/recipes-extended/shadow/files/pam.d/newusers b/meta/recipes-extended/shadow/files/pam.d/newusers
index 4aa3dde..4c59dfa 100644
--- a/meta/recipes-extended/shadow/files/pam.d/newusers
+++ b/meta/recipes-extended/shadow/files/pam.d/newusers
@@ -1,4 +1,6 @@
# The PAM configuration file for the Shadow 'newusers' service
#
+auth sufficient pam_rootok.so
+account required pam_permit.so
password include common-password
--
2.8.1
More information about the Openembedded-core
mailing list