diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-06-14 17:28:17 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-06-14 17:28:17 -0500 |
commit | 1fdd6e1d01436611217b6738fdc997e5af4a342b (patch) | |
tree | 7233fab85c1462915350a5cf30124f4d6438c290 /user/consolekit2/pam-foreground-compat.ck | |
parent | b7c1783e11101b34e7014a1bcdfd41f9673a6a10 (diff) | |
download | packages-1fdd6e1d01436611217b6738fdc997e5af4a342b.tar.gz packages-1fdd6e1d01436611217b6738fdc997e5af4a342b.tar.bz2 packages-1fdd6e1d01436611217b6738fdc997e5af4a342b.tar.xz packages-1fdd6e1d01436611217b6738fdc997e5af4a342b.zip |
move consolekit2, py*, wine to user/
Diffstat (limited to 'user/consolekit2/pam-foreground-compat.ck')
-rw-r--r-- | user/consolekit2/pam-foreground-compat.ck | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/user/consolekit2/pam-foreground-compat.ck b/user/consolekit2/pam-foreground-compat.ck new file mode 100644 index 000000000..c9255503c --- /dev/null +++ b/user/consolekit2/pam-foreground-compat.ck @@ -0,0 +1,17 @@ +#!/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 |