https://github.com/hpc-maths/GenEO
Revision a6351b5cabafa2fc608691309f9974bcf30c3cab authored by Loic Gouarin on 04 June 2018, 11:27:23 UTC, committed by GitHub on 04 June 2018, 11:27:23 UTC
1 parent d6d74ea
Tip revision: a6351b5cabafa2fc608691309f9974bcf30c3cab authored by Loic Gouarin on 04 June 2018, 11:27:23 UTC
fix norm
fix norm
Tip revision: a6351b5
xvfb_bg
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
Computing file changes ...