VirtualBox

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

Last change on this file since 61202 was 37255, checked in by vboxsync, 14 years ago

Installer/linux+solaris: clean up VBox.sh

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1#!/bin/sh
2#
3# VirtualBox startup script for Solaris Guests Additions
4#
5# Copyright (C) 2008-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# The contents of this file may alternatively be used under the terms
16# of the Common Development and Distribution License Version 1.0
17# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
18# VirtualBox OSE distribution, in which case the provisions of the
19# CDDL are applicable instead of those of the GPL.
20#
21# You may elect to license modified versions of this file under the
22# terms and conditions of either the GPL or the CDDL or both.
23#
24
25CURRENT_ISA=`isainfo -k`
26if test "$CURRENT_ISA" = "amd64"; then
27 INSTALL_DIR="/opt/VirtualBoxAdditions/amd64"
28else
29 INSTALL_DIR="/opt/VirtualBoxAdditions"
30fi
31
32APP=`basename $0`
33case "$APP" in
34 VBoxClient)
35 exec "$INSTALL_DIR/VBoxClient" "$@"
36 ;;
37 VBoxService)
38 exec "$INSTALL_DIR/VBoxService" "$@"
39 ;;
40 VBoxControl)
41 exec "$INSTALL_DIR/VBoxControl" "$@"
42 ;;
43 *)
44 echo "Unknown application - $APP"
45 exit 1
46 ;;
47esac
48exit 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