VirtualBox

source: vbox/trunk/src/VBox/Installer/solaris/VBox.sh@ 62148

Last change on this file since 62148 was 61998, checked in by vboxsync, 8 years ago

add VBoxBugReport to the installers (already existed for Windows)

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 1.7 KB
Line 
1#!/bin/sh
2## @file
3# Oracle VM VirtualBox startup script, Solaris hosts.
4#
5
6#
7# Copyright (C) 2006-2015 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18CURRENT_ISA=`isainfo -k`
19if test "$CURRENT_ISA" = "amd64"; then
20 INSTALL_DIR="/opt/VirtualBox/amd64"
21else
22 INSTALL_DIR="/opt/VirtualBox/i386"
23fi
24
25APP=`basename $0`
26case "$APP" in
27 VirtualBox|virtualbox)
28 exec "$INSTALL_DIR/VirtualBox" "$@"
29 ;;
30 VBoxManage|vboxmanage)
31 exec "$INSTALL_DIR/VBoxManage" "$@"
32 ;;
33 VBoxSDL|vboxsdl)
34 exec "$INSTALL_DIR/VBoxSDL" "$@"
35 ;;
36 VBoxVRDP|VBoxHeadless|vboxheadless)
37 exec "$INSTALL_DIR/VBoxHeadless" "$@"
38 ;;
39 VBoxBugReport|vboxbugreport)
40 exec "$INSTALL_DIR/VBoxBugReport" "$@"
41 ;;
42 VBoxBalloonCtrl|vboxballoonctrl)
43 exec "$INSTALL_DIR/VBoxBalloonCtrl" "$@"
44 ;;
45 VBoxAutostart|vboxautostart)
46 exec "$INSTALL_DIR/VBoxAutostart" "$@"
47 ;;
48 VBoxDTrace|vboxdtrace)
49 exec "$INSTALL_DIR/VBoxDTrace" "$@"
50 ;;
51 vboxwebsrv)
52 exec "$INSTALL_DIR/vboxwebsrv" "$@"
53 ;;
54 VBoxQtconfig)
55 exec "$INSTALL_DIR/VBoxQtconfig" "$@"
56 ;;
57 vbox-img)
58 exec "$INSTALL_DIR/vbox-img" "$0"
59 ;;
60 *)
61 echo "Unknown application - $APP"
62 exit 1
63 ;;
64esac
65exit 0
66
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette