[oe-commits] [openembedded-core] 25/27: shadow: fix pam configs for chpasswd, newusers

git at git.openembedded.org git at git.openembedded.org
Tue May 29 20:09:57 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit f6efc1dbd1f3a0f68ee731ff2b5a5d798ecf2cf8
Author: yadi.hu at windriver.com <yadi.hu at windriver.com>
AuthorDate: Fri May 25 10:48:10 2018 +0800

    shadow: fix pam configs for chpasswd, newusers
    
    Fix below errors while pam is enabled 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: Wenzong Fan <wenzong.fan at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list