[oe-commits] Paul Eggleton : classes/image: disable pam nullok_secure with debug-tweaks

git at git.openembedded.org git at git.openembedded.org
Fri Mar 21 17:08:17 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: a973fe10305c7d080d5c017ddd9b2bd860221659
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=a973fe10305c7d080d5c017ddd9b2bd860221659

Author: Paul Eggleton <paul.eggleton at linux.intel.com>
Date:   Fri Mar 21 16:31:31 2014 +0000

classes/image: disable pam nullok_secure with debug-tweaks

If you want passwordless logins to work with pam enabled, then you can't
have "nullok_secure" enabled on pam_unix entries. Add some
postprocessing to change these to "nullok" when debug-tweaks is in
IMAGE_FEATURES, in order to make passwordless logins with PAM work
again.

Fixes [YOCTO #5973].

Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/image.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 9a04288..3436624 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -298,6 +298,10 @@ ssh_allow_empty_password () {
 			printf '\nDROPBEAR_EXTRA_ARGS="-B"\n' >> ${IMAGE_ROOTFS}${sysconfdir}/default/dropbear
 		fi
 	fi
+
+	if [ -d ${IMAGE_ROOTFS}${sysconfdir}/pam.d ] ; then
+		sed -i 's/nullok_secure/nullok/' ${IMAGE_ROOTFS}${sysconfdir}/pam.d/*
+	fi
 }
 
 # Enable postinst logging if debug-tweaks is enabled



More information about the Openembedded-commits mailing list