[oe-commits] Ross Burton : libpam: only use pam_systemd.so if systemd is enabled

git at git.openembedded.org git at git.openembedded.org
Fri Sep 20 11:16:23 UTC 2013


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

Author: Ross Burton <ross.burton at intel.com>
Date:   Thu Sep 19 16:03:21 2013 +0100

libpam: only use pam_systemd.so if systemd is enabled

So that sysvinit images don't warn on every login only add it to common-session
if systemd is a DISTRO_FEATURE.

[ YOCTO #3805 ]

Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../pam/libpam/pam.d/common-session                |    2 --
 meta/recipes-extended/pam/libpam_1.1.6.bb          |    4 ++++
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/pam/libpam/pam.d/common-session b/meta/recipes-extended/pam/libpam/pam.d/common-session
index 7fd61fe..a4a551f 100644
--- a/meta/recipes-extended/pam/libpam/pam.d/common-session
+++ b/meta/recipes-extended/pam/libpam/pam.d/common-session
@@ -17,5 +17,3 @@ session	requisite			pam_deny.so
 session	required			pam_permit.so
 # and here are more per-package modules (the "Additional" block)
 session	required	pam_unix.so
-# Register with logind to make screen/tmux/etc work
-session	optional	pam_systemd.so
diff --git a/meta/recipes-extended/pam/libpam_1.1.6.bb b/meta/recipes-extended/pam/libpam_1.1.6.bb
index 448a67b..f7493c5 100644
--- a/meta/recipes-extended/pam/libpam_1.1.6.bb
+++ b/meta/recipes-extended/pam/libpam_1.1.6.bb
@@ -102,6 +102,10 @@ do_install() {
 
 	# The lsb requires unix_chkpwd has setuid permission
 	chmod 4755 ${D}${sbindir}/unix_chkpwd
+
+	if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+		echo "session optional pam_systemd.so" >> ${D}${sysconfdir}/pam.d/common-session
+	fi
 }
 
 python do_pam_sanity () {



More information about the Openembedded-commits mailing list