mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-03 15:51:33 +01:00
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
18 lines
446 B
Plaintext
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
|