1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # Oracle VM VirtualBox startup script, Solaris hosts.
|
---|
4 | #
|
---|
5 | # Copyright (C) 2006-2012 Oracle Corporation
|
---|
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 |
|
---|
16 | CURRENT_ISA=`isainfo -k`
|
---|
17 | if test "$CURRENT_ISA" = "amd64"; then
|
---|
18 | INSTALL_DIR="/opt/VirtualBox/amd64"
|
---|
19 | else
|
---|
20 | INSTALL_DIR="/opt/VirtualBox/i386"
|
---|
21 | fi
|
---|
22 |
|
---|
23 | APP=`basename $0`
|
---|
24 | case "$APP" in
|
---|
25 | VirtualBox|virtualbox)
|
---|
26 | exec "$INSTALL_DIR/VirtualBox" "$@"
|
---|
27 | ;;
|
---|
28 | VBoxManage|vboxmanage)
|
---|
29 | exec "$INSTALL_DIR/VBoxManage" "$@"
|
---|
30 | ;;
|
---|
31 | VBoxSDL|vboxsdl)
|
---|
32 | exec "$INSTALL_DIR/VBoxSDL" "$@"
|
---|
33 | ;;
|
---|
34 | VBoxVRDP|VBoxHeadless|vboxheadless)
|
---|
35 | exec "$INSTALL_DIR/VBoxHeadless" "$@"
|
---|
36 | ;;
|
---|
37 | VBoxBalloonCtrl|vboxballoonctrl)
|
---|
38 | exec "$INSTALL_DIR/VBoxBalloonCtrl" "$@"
|
---|
39 | ;;
|
---|
40 | VBoxAutostart|vboxautostart)
|
---|
41 | exec "$INSTALL_DIR/VBoxAutostart" "$@"
|
---|
42 | ;;
|
---|
43 | vboxwebsrv)
|
---|
44 | exec "$INSTALL_DIR/vboxwebsrv" "$@"
|
---|
45 | ;;
|
---|
46 | VBoxQtconfig)
|
---|
47 | exec "$INSTALL_DIR/VBoxQtconfig" "$@"
|
---|
48 | ;;
|
---|
49 | *)
|
---|
50 | echo "Unknown application - $APP"
|
---|
51 | exit 1
|
---|
52 | ;;
|
---|
53 | esac
|
---|
54 | exit 0
|
---|