https://github.com/hpc-maths/GenEO
Revision ce6a596c79bae0e9d69388c76748f838093b6513 authored by gouarin on 07 June 2021, 09:04:52 UTC, committed by gouarin on 07 June 2021, 09:04:52 UTC
1 parent 1dec02f
Tip revision: ce6a596c79bae0e9d69388c76748f838093b6513 authored by gouarin on 07 June 2021, 09:04:52 UTC
update post treatment process
update post treatment process
Tip revision: ce6a596
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 ...