From 8fbc0a431cc25292978323edc2f53bfa9f2c3c96 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 10 Oct 2011 17:07:14 +0200 Subject: corrected some errors --- src/testApp.sh | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100755 src/testApp.sh (limited to 'src/testApp.sh') diff --git a/src/testApp.sh b/src/testApp.sh deleted file mode 100755 index 9b46385..0000000 --- a/src/testApp.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -# Script now simply passes all arguments to the fbgui call. -# Use: ./testApp.sh [OPTIONS] -# OPTIONS: -# -h, --help prints help -# -D , --debug= sets debug level [0,1] -# -u , --url= sets URL to load -# -d , --download= sets download directory -# -c , --config= sets path to config file -# -t , --trigger= sets path to file triggering URL load -# -s , --serial= sets path to serial number file -# -# Note: all path are expected to be absolute. - -# clean /tmp/fbgui -rm -rf /tmp/fbgui -rm /tmp/fbgui_trigger - -# path to script (including script name) -script_path="$(cd "${0%/*}" 2>/dev/null; echo "$PWD"/"${0##*/}")" - -# to get the path only: use dirname which strips the filename from a path -working_path=`dirname "$script_path"` - -# construct unique display_id based on user, needed for multi-user qvfb usage -display_id=$(grep -n $(whoami) /etc/passwd| head -n 1|awk -F : '{print $1}') - -# Start QT's virtual framebuffer with proper display_id -/usr/local/Trolltech/Qt-4.7.2/bin/qvfb -width 1024 -height 768 -qwsdisplay :$display_id & -# quick sleep to wait for qvfb loading -sleep 0.2 -# Start fbgui connecting to QVFb with display_id from above. -$working_path/fbgui -display QVFb:$display_id $@ -# Check if fbbrowser is not running, if so kill the qvfb. -if [ $(ps aux | grep -v grep | grep -c fbgui) -eq 1 ] -then - echo "fbgui is still running ..." -else - echo "fbgui stopped running, killing qvfb ..." - killall qvfb -fi -- cgit v1.2.3-55-g7522