57 lines
1.8 KiB
Diff
57 lines
1.8 KiB
Diff
From 9497651214baaae6dabe7cc1971a1799633983a6 Mon Sep 17 00:00:00 2001
|
|
From: Olivier Fourdan <ofourdan@redhat.com>
|
|
Date: Fri, 22 Nov 2024 17:04:09 +0100
|
|
Subject: [PATCH] kiosk-script: Copy and run the script from XDG_RUNTIME_DIR
|
|
|
|
Some setup may enforce the noexec flag on the HOME directories.
|
|
|
|
That prevents any executable placed in the HOME directory from running,
|
|
including the GNOME Kiosk script session.
|
|
|
|
To work around such an issue, copy and execute the script from the
|
|
XDG_RUNTIME_DIR instead.
|
|
|
|
Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
|
|
---
|
|
kiosk-script/gnome-kiosk-script | 18 +++++++++++++-----
|
|
1 file changed, 13 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/kiosk-script/gnome-kiosk-script b/kiosk-script/gnome-kiosk-script
|
|
index e45438d..c4ab176 100755
|
|
--- a/kiosk-script/gnome-kiosk-script
|
|
+++ b/kiosk-script/gnome-kiosk-script
|
|
@@ -1,8 +1,10 @@
|
|
#!/usr/bin/sh
|
|
|
|
-if [ ! -e ~/.local/bin/gnome-kiosk-script ]; then
|
|
- mkdir -p ~/.local/bin ~/.config
|
|
- cat > ~/.local/bin/gnome-kiosk-script <<- "EOF"
|
|
+EXECDIR=~/.local/bin
|
|
+
|
|
+if [ ! -e $EXECDIR/gnome-kiosk-script ]; then
|
|
+ mkdir -p $EXECDIR ~/.config
|
|
+ cat > $EXECDIR/gnome-kiosk-script <<- "EOF"
|
|
#!/bin/sh
|
|
# This script is located in ~/.local/bin.
|
|
# It's provided as an example script to show how
|
|
@@ -16,8 +18,14 @@ if [ ! -e ~/.local/bin/gnome-kiosk-script ]; then
|
|
exec "$0" "$@"
|
|
EOF
|
|
|
|
- chmod +x ~/.local/bin/gnome-kiosk-script
|
|
+ chmod +x $EXECDIR/gnome-kiosk-script
|
|
touch ~/.config/gnome-initial-setup-done
|
|
fi
|
|
|
|
-exec ~/.local/bin/gnome-kiosk-script "$@"
|
|
+# Copy and run the script from the XDG_RUNTIME_DIR directory if that exists
|
|
+if [ -d $XDG_RUNTIME_DIR ]; then
|
|
+ cp $EXECDIR/gnome-kiosk-script $XDG_RUNTIME_DIR/
|
|
+ EXECDIR=$XDG_RUNTIME_DIR
|
|
+fi
|
|
+
|
|
+exec $EXECDIR/gnome-kiosk-script "$@"
|
|
--
|
|
2.47.1
|
|
|