1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # Sun VirtualBox
|
---|
4 | #
|
---|
5 | # Copyright (C) 2006-2009 Sun Microsystems, Inc.
|
---|
6 | #
|
---|
7 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | # available from http://www.virtualbox.org. This file is free software;
|
---|
9 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | # General Public License (GPL) as published by the Free Software
|
---|
11 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | #
|
---|
15 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
16 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
17 | # additional information or have any questions.
|
---|
18 | #
|
---|
19 |
|
---|
20 | PATH="/usr/bin:/bin:/usr/sbin:/sbin"
|
---|
21 |
|
---|
22 | # Note: This script must not fail if the module was not successfully installed
|
---|
23 | # because the user might not want to run a VM but only change VM params!
|
---|
24 |
|
---|
25 | if [ "$1" = "shutdown" ]; then
|
---|
26 | SHUTDOWN="true"
|
---|
27 | elif ! lsmod|grep -q vboxdrv; then
|
---|
28 | cat << EOF
|
---|
29 | WARNING: The vboxdrv kernel module is not loaded. Either there is no module
|
---|
30 | available for the current kernel (`uname -r`) or it failed to
|
---|
31 | load. Please recompile the kernel module and install it by
|
---|
32 |
|
---|
33 | sudo /etc/init.d/vboxdrv setup
|
---|
34 |
|
---|
35 | You will not be able to start VMs until this problem is fixed.
|
---|
36 | EOF
|
---|
37 | elif [ ! -c /dev/vboxdrv ]; then
|
---|
38 | cat << EOF
|
---|
39 | WARNING: The character device /dev/vboxdrv does not exist. Try
|
---|
40 |
|
---|
41 | sudo /etc/init.d/vboxdrv restart
|
---|
42 |
|
---|
43 | and if that is not successful, try to re-install the package.
|
---|
44 |
|
---|
45 | You will not be able to start VMs until this problem is fixed.
|
---|
46 | EOF
|
---|
47 | fi
|
---|
48 |
|
---|
49 | if [ -f /etc/vbox/module_not_compiled ]; then
|
---|
50 | cat << EOF
|
---|
51 | WARNING: The compilation of the vboxdrv.ko kernel module failed during the
|
---|
52 | installation for some reason. Starting a VM will not be possible.
|
---|
53 | Please consult the User Manual for build instructions.
|
---|
54 | EOF
|
---|
55 | fi
|
---|
56 |
|
---|
57 | SERVER_PID=`ps -U \`whoami\` | grep VBoxSVC | awk '{ print $1 }'`
|
---|
58 | if [ -z "$SERVER_PID" ]; then
|
---|
59 | # Server not running yet/anymore, cleanup socket path.
|
---|
60 | # See IPC_GetDefaultSocketPath()!
|
---|
61 | if [ -n "$LOGNAME" ]; then
|
---|
62 | rm -rf /tmp/.vbox-$LOGNAME-ipc > /dev/null 2>&1
|
---|
63 | else
|
---|
64 | rm -rf /tmp/.vbox-$USER-ipc > /dev/null 2>&1
|
---|
65 | fi
|
---|
66 | fi
|
---|
67 |
|
---|
68 | if [ "$SHUTDOWN" = "true" ]; then
|
---|
69 | if [ -n "$SERVER_PID" ]; then
|
---|
70 | kill -TERM $SERVER_PID
|
---|
71 | sleep 2
|
---|
72 | fi
|
---|
73 | exit 0
|
---|
74 | fi
|
---|
75 |
|
---|
76 | APP=`which $0`
|
---|
77 | APP=`basename $APP`
|
---|
78 | APP=${APP##/*/}
|
---|
79 | case "$APP" in
|
---|
80 | VirtualBox)
|
---|
81 | exec "/usr/lib/virtualbox/VirtualBox" "$@"
|
---|
82 | ;;
|
---|
83 | VBoxManage)
|
---|
84 | exec "/usr/lib/virtualbox/VBoxManage" "$@"
|
---|
85 | ;;
|
---|
86 | VBoxSDL)
|
---|
87 | exec "/usr/lib/virtualbox/VBoxSDL" "$@"
|
---|
88 | ;;
|
---|
89 | VBoxVRDP)
|
---|
90 | exec "/usr/lib/virtualbox/VBoxHeadless" "$@"
|
---|
91 | ;;
|
---|
92 | VBoxHeadless)
|
---|
93 | exec "/usr/lib/virtualbox/VBoxHeadless" "$@"
|
---|
94 | ;;
|
---|
95 | *)
|
---|
96 | echo "Unknown application - $APP"
|
---|
97 | ;;
|
---|
98 | esac
|
---|