From 8042e377b8bb8f79b7da2dff89d2247ce1f74b66 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sun, 12 Jan 2014 01:18:41 +0800 Subject: [PATCH] pam: skip DBUS_SESSION_BUS_ADDRESS export when kdbus is not active --- src/login/pam-module.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/login/pam-module.c b/src/login/pam-module.c index e76fef800..7400734fd 100644 --- a/src/login/pam-module.c +++ b/src/login/pam-module.c @@ -173,6 +173,10 @@ static int export_legacy_dbus_address( _cleanup_free_ char *s = NULL; int r; + /* skip export if kdbus is not active */ + if (access("/dev/kdbus", F_OK) < 0) + return PAM_SUCCESS; + if (asprintf(&s, KERNEL_USER_BUS_FMT ";" UNIX_USER_BUS_FMT, (unsigned long) uid, runtime) < 0) { pam_syslog(handle, LOG_ERR, "Failed to set bus variable."); -- 2.30.2