Skip to content

Commit

Permalink
xvfb script
Browse files Browse the repository at this point in the history
  • Loading branch information
justheuristic authored Jan 25, 2018
1 parent 3bb348a commit 0daf1bb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions xvfb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#taken from https://gist.github.com/jterrace/2911875
XVFB=/usr/bin/Xvfb
XVFBARGS=":1 -screen 0 1024x768x24 -ac +extension GLX +render -noreset"
PIDFILE=./xvfb.pid
case "$1" in
start)
echo -n "Starting virtual X frame buffer: Xvfb"
start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS
echo "."
;;
stop)
echo -n "Stopping virtual X frame buffer: Xvfb"
start-stop-daemon --stop --quiet --pidfile $PIDFILE
echo "."
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: /etc/init.d/xvfb {start|stop|restart}"
exit 1
esac

exit 0

0 comments on commit 0daf1bb

Please sign in to comment.