summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/runit-scripts/runitscripts/services/Xvfb/finish
blob: 14cd831ece263e31e4f2b72fb539c4fa2a9db71f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
. /etc/profile
VIRTUAL_DISPLAY=":50"
Xvfb_parm="$VIRTUAL_DISPLAY -screen 0 800x600x16"
pid=`ps -eaf | grep Xvfb | grep $VIRTUAL_DISPLAY | awk '{print $2}'`
 if [ $pid ] 
 then
 	kill -9 $pid 
#	echo $pid
fi
rm -f /tmp/.X${VIRTUAL_DISPLAY}-lock