Merge commit 'refs/1_0_6_candidate' of https://git.maemo.org/projects/qtmeetings...
[qtmeetings] / scripts / qtmeetings-launcher
1 #!/bin/sh
2 # must be in /etc/init.d/
3
4 case "$1" in
5         start)
6         test -x $PROG || exit 0
7         export DISPLAY=':0.0'
8         cd /usr/bin/
9         run-standalone.sh /usr/bin/qtmeetings &
10         ;;
11         *)
12             exit 1
13         ;;
14 esac
15