https://github.com/hpc-maths/GenEO
Revision a74bf1af7023b9e16ba133cc5ce7fb92e50f19d8 authored by Nicole Spillane on 27 May 2021, 11:31:35 UTC, committed by Nicole Spillane on 27 May 2021, 11:31:35 UTC
1 parent be8a282
Tip revision: a74bf1af7023b9e16ba133cc5ce7fb92e50f19d8 authored by Nicole Spillane on 27 May 2021, 11:31:35 UTC
a small change in options of asarray which fixes a warning when I save gathered data with different lengths. TO: fix all occurences of this
a small change in options of asarray which fixes a warning when I save gathered data with different lengths. TO: fix all occurences of this
Tip revision: a74bf1a
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 ...