]> git.pld-linux.org Git - packages/VirtualBox-bin.git/blob - VirtualBox.sh
- cosmetics; exec
[packages/VirtualBox-bin.git] / VirtualBox.sh
1 #!/bin/sh
2 BINFILE=$(basename "$0")
3 VBOXDIR=/usr/lib/VirtualBox
4 [ ! -d "$VBOXDIR" ] && VBOXDIR=/usr/lib64/VirtualBox
5
6 show_message() {
7         if [ ! -z "$DISPLAY" ] && [ -x /usr/bin/gxmessage ]; then
8                 local BAK=$IFS
9                 IFS=""
10                 gxmessage --center --buttons GTK_STOCK_OK -wrap -geometry 400x150 -name $BINFILE $(echo -e "$1")
11                 IFS=$BAK
12         else
13                 echo -e "$1"
14         fi
15 }
16
17 if [ ! -d "$VBOXDIR" ]; then
18         show_message "Can't find VritualBox libraries! Can't continue!.\nCorrect this situation or contact with your system administrator."
19         exit 1
20 fi
21
22 if [ ! -c /dev/vboxdrv ]; then
23         show_message "Special character device /dev/vboxdrv doesn't exists!\nCheck your installation and if vboxdrv kernel module is loaded."
24         exit 1
25 fi
26
27 if [ ! -w /dev/vboxdrv ]; then
28         show_message "You don't have write access to /dev/vboxdrv!\nCorrect this situation or contact with your system administrator."
29         exit 1
30 fi
31
32 export LD_LIBRARY_PATH=$VBOXDIR
33 exec $VBOXDIR/$BINFILE ${1:+"$@"}
This page took 0.084013 seconds and 4 git commands to generate.