summaryrefslogtreecommitdiffstats
path: root/extra/restart-radharc
diff options
context:
space:
mode:
Diffstat (limited to 'extra/restart-radharc')
-rwxr-xr-xextra/restart-radharc7
1 files changed, 5 insertions, 2 deletions
diff --git a/extra/restart-radharc b/extra/restart-radharc
index d652deb..96af888 100755
--- a/extra/restart-radharc
+++ b/extra/restart-radharc
@@ -31,10 +31,13 @@ for fd in $(ls -1 /dev/fd/); do
fi
done
+# Get the user's real UID, in a sh-portable way.
+uid="$(cat /proc/self/status | grep '^Uid:' | cut -f 2)"
+
# Restart all instances of radharc.
-for pid in pgrep -x radharc; do
+for pid in pgrep -x -U $uid radharc; do
# Open environ and cmdline and be sure that they we successfully opened.
- # It is possible that the process has exited, or is not yours.
+ # It is possible that the process has exited.
exec 3<proc/"$pid"/environ 2>/dev/null
if [ ! $? = 0 ]; then
continue