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