VirtualBox

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

Last change on this file since 77807 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1#!/bin/sh
2# $Id: pkginstall.sh 76553 2019-01-01 01:45:53Z vboxsync $
3## @file
4#
5# VirtualBox postinstall script for Solaris.
6#
7# If you just installed VirtualBox using IPS/pkg(5), you should run this
8# script once to avoid rebooting the system before using VirtualBox.
9#
10
11#
12# Copyright (C) 2009-2019 Oracle Corporation
13#
14# This file is part of VirtualBox Open Source Edition (OSE), as
15# available from http://www.virtualbox.org. This file is free software;
16# you can redistribute it and/or modify it under the terms of the GNU
17# General Public License (GPL) as published by the Free Software
18# Foundation, in version 2 as it comes in the "COPYING" file of the
19# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
20# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
21#
22
23if test "$1" != "--srv4"; then
24 # IPS package
25 echo "Checking for older & partially installed bits..."
26 ISIPS="--ips"
27else
28 # SRv4 package
29 echo "Checking for older bits..."
30 ISIPS=""
31fi
32
33# pkgadd -v
34if test "$1" = "--sh-trace" || test "$2" = "--sh-trace" || test "$3" = "--sh-trace"; then
35 set -x
36fi
37DEBUGOPT=`set -o 2>/dev/null | sed -ne 's/^xtrace *on$/--sh-trace/p'` # propagate pkgadd -v
38
39# If PKG_INSTALL_ROOT is undefined or NULL, redefine to '/' and carry on.
40${PKG_INSTALL_ROOT:=/}/opt/VirtualBox/vboxconfig.sh --preremove --fatal ${ISIPS} ${DEBUGOPT}
41
42if test "$?" -eq 0; then
43 echo "Installing new ones..."
44 $PKG_INSTALL_ROOT/opt/VirtualBox/vboxconfig.sh --postinstall ${DEBUGOPT}
45 rc=$?
46 if test "$rc" -ne 0; then
47 echo 1>&2 "## Completed but with errors."
48 rc=1
49 else
50 if test "$1" != "--srv4"; then
51 echo "Post installation completed successfully!"
52 fi
53 fi
54else
55 echo 1>&2 "## ERROR!! Failed to remove older/partially installed bits."
56 rc=1
57fi
58
59exit "$rc"
60
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