aports/main/consolekit/pam-foreground-compat.ck
Natanael Copa 85314dd187 main/consolekit: use pam compat hook from debian
this fixes 'at_console' for dbus so logged in users are allowed to
communicate with org.bluez. (bluetooth-applet and bluez-simple-agent)

was found here:
http://git.debian.org/?p=pkg-utopia/consolekit.git;a=tree;f=debian;hb=HEAD
2011-04-05 14:53:34 +00:00

18 lines
446 B
Plaintext

#!/bin/sh
TAGDIR=/var/run/console
[ -n "$CK_SESSION_USER_UID" ] || exit 1
[ "$CK_SESSION_IS_LOCAL" = "true" ] || exit 0
TAGFILE="$TAGDIR/`getent passwd $CK_SESSION_USER_UID | cut -f 1 -d:`"
if [ "$1" = "session_added" ]; then
mkdir -p "$TAGDIR"
echo "$CK_SESSION_ID" >> "$TAGFILE"
fi
if [ "$1" = "session_removed" ] && [ -e "$TAGFILE" ]; then
sed -i "\%^$CK_SESSION_ID\$%d" "$TAGFILE"
[ -s "$TAGFILE" ] || rm -f "$TAGFILE"
fi