summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Schulz <jason@schulz.name>2015-12-26 14:56:29 -0800
committerJason Schulz <jason@schulz.name>2015-12-26 16:43:19 -0800
commitbd21e9ce615caa06002d6df6c97444e913e0244a (patch)
treec38e6d8d9a561d7adbe6273ae7a69ae3523d4fa1 /x11-misc/virtualgl/files
parentnet-dns/dnscrypt-proxy: ease of use improvements. (diff)
downloadgentoo-bd21e9ce615caa06002d6df6c97444e913e0244a.tar.gz
gentoo-bd21e9ce615caa06002d6df6c97444e913e0244a.tar.bz2
gentoo-bd21e9ce615caa06002d6df6c97444e913e0244a.zip
x11-misc/virtualgl: race condition fix
This fixes a race condition in the openrc script. Gentoo-Bug: 569226 Suggested-By: Jason Schulz <jason@schulz.name>
Diffstat (limited to 'x11-misc/virtualgl/files')
-rw-r--r--x11-misc/virtualgl/files/vgl.initd-r346
1 files changed, 46 insertions, 0 deletions
diff --git a/x11-misc/virtualgl/files/vgl.initd-r3 b/x11-misc/virtualgl/files/vgl.initd-r3
new file mode 100644
index 000000000000..970a29e4fafc
--- /dev/null
+++ b/x11-misc/virtualgl/files/vgl.initd-r3
@@ -0,0 +1,46 @@
+#!/sbin/runscript
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# TODO: description="*" and other OpenRC 0.9+ candies
+
+depend() {
+ need xdm
+ after sshd
+}
+
+start() {
+ ebegin "Starting VirtualGL"
+ truncate --size=0 /var/lib/VirtualGL/vgl_xauth_key
+
+ set_xauth
+
+ if [ -z "$XAUTHORITY" ]; then
+
+ einfo "Waiting for xauthority..."
+
+ # wait for xauth file
+ while true; do
+ set_xauth
+
+ if [ -e "$XAUTHORITY" ]; then
+ break;
+ fi
+
+ sleep 1
+ done
+ fi
+
+
+ xauth -f /var/lib/VirtualGL/vgl_xauth_key add $DISPLAY . `xauth -f $XAUTHORITY list | awk '{print $3;exit}'` && \
+ chmod 644 /var/lib/VirtualGL/vgl_xauth_key
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping VirtualGL"
+ [ -f /var/lib/VirtualGL/vgl_xauth_key ] && \
+ rm /var/lib/VirtualGL/vgl_xauth_key
+ eend $?
+}