VirtualBox

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

Last change on this file since 37299 was 37255, checked in by vboxsync, 13 years ago

Installer/linux+solaris: clean up VBox.sh

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 1.5 KB
Line 
1#!/bin/sh
2#
3# Oracle VM VirtualBox startup script, Solaris hosts.
4#
5# Copyright (C) 2006-2011 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
16CURRENT_ISA=`isainfo -k`
17if test "$CURRENT_ISA" = "amd64"; then
18 INSTALL_DIR="/opt/VirtualBox/amd64"
19else
20 INSTALL_DIR="/opt/VirtualBox/i386"
21fi
22
23APP=`basename $0`
24case "$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 vboxwebsrv)
41 exec "$INSTALL_DIR/vboxwebsrv" "$@"
42 ;;
43 VBoxBFE|vboxbfe)
44 exec "$INSTALL_DIR/VBoxBFE" "$@"
45 ;;
46 VBoxQtconfig)
47 exec "$INSTALL_DIR/VBoxQtconfig" "$@"
48 ;;
49 *)
50 echo "Unknown application - $APP"
51 exit 1
52 ;;
53esac
54exit 0
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