diff options
Diffstat (limited to 'x11-misc/virtualgl/files/vgl.initd')
-rw-r--r-- | x11-misc/virtualgl/files/vgl.initd | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/x11-misc/virtualgl/files/vgl.initd b/x11-misc/virtualgl/files/vgl.initd deleted file mode 100644 index b1257b904cfa..000000000000 --- a/x11-misc/virtualgl/files/vgl.initd +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/virtualgl/files/vgl.initd,v 1.1 2012/04/21 13:14:47 pacho Exp $ - -# TODO: description="*" and other OpenRC 0.9+ candies - -depend() { - need xdm - after sshd -} - -start() { - ebegin "Starting VirtualGL" - truncate --size=0 /etc/VirtualGL/vgl_xauth_key - - # Check if XAUTHORITY was set successfully, if not wait a bit and let X to start - [ -z "$XAUTHORITY" ] && sleep 3 && set_xauth - [ -e "$XAUTHORITY" ] || sleep 3 - xauth -f /etc/VirtualGL/vgl_xauth_key add $DISPLAY . `xauth -f $XAUTHORITY list | awk '{print $3}'` && \ - chmod 644 /etc/VirtualGL/vgl_xauth_key - eend $? -} - -stop() { - ebegin "Stopping VirtualGL" - [ -f /etc/VirtualGL/vgl_xauth_key ] && \ - rm /etc/VirtualGL/vgl_xauth_key - eend $? -} |