VirtualBox

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

Last change on this file since 32048 was 30667, checked in by vboxsync, 14 years ago

Solaris/Installer: Support remote installations. Adds better support to determine OS minor version for non-conventional versions found in uname.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1#!/bin/sh
2## @file
3# Sun VirtualBox
4# VirtualBox checkinstall script for Solaris.
5#
6
7#
8# Copyright (C) 2009 Oracle Corporation
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18
19abort_error()
20{
21 echo "## Please close all VirtualBox processes and re-run this installer."
22 exit 1
23}
24
25# nothing to check for targetted install
26if test "x${BASEDIR}" != "x/"; then
27 exit 0
28fi
29
30# Check if VBoxSVC is currently running
31VBOXSVC_PID=`ps -eo pid,fname | grep VBoxSVC | grep -v grep | awk '{ print $1 }'`
32if test ! -z "$VBOXSVC_PID" && test "$VBOXSVC_PID" -ge 0; then
33 echo "## VirtualBox's VBoxSVC (pid $VBOXSVC_PID) still appears to be running."
34 abort_error
35fi
36
37# Check if the Zone Access service is holding open vboxdrv, if so stop & remove it
38servicefound=`svcs -H "svc:/application/virtualbox/zoneaccess" 2> /dev/null | grep '^online'`
39if test ! -z "$servicefound"; then
40 echo "## VirtualBox's zone access service appears to still be running."
41 echo "## Halting & removing zone access service..."
42 /usr/sbin/svcadm disable -s svc:/application/virtualbox/zoneaccess
43 # Don't delete the service, handled by manifest class action
44 # /usr/sbin/svccfg delete svc:/application/virtualbox/zoneaccess
45fi
46
47# Check if the Web service is running, if so stop & remove it
48servicefound=`svcs -H "svc:/application/virtualbox/webservice" 2> /dev/null | grep '^online'`
49if test ! -z "$servicefound"; then
50 echo "## VirtualBox web service appears to still be running."
51 echo "## Halting & removing webservice..."
52 /usr/sbin/svcadm disable -s svc:/application/virtualbox/webservice
53 # Don't delete the service, handled by manifest class action
54 # /usr/sbin/svccfg delete svc:/application/virtualbox/webservice
55fi
56
57# Check if vboxnet is still plumbed, if so try unplumb it
58BIN_IFCONFIG=`which ifconfig 2> /dev/null`
59if test -x "$BIN_IFCONFIG"; then
60 vboxnetup=`$BIN_IFCONFIG vboxnet0 >/dev/null 2>&1`
61 if test "$?" -eq 0; then
62 echo "## VirtualBox NetAdapter is still plumbed"
63 echo "## Trying to remove old NetAdapter..."
64 $BIN_IFCONFIG vboxnet0 unplumb
65 if test "$?" -ne 0; then
66 echo "## VirtualBox NetAdapter 'vboxnet0' couldn't be unplumbed (probably in use)."
67 abort_error
68 fi
69 fi
70 vboxnetup=`$BIN_IFCONFIG vboxnet0 inet6 >/dev/null 2>&1`
71 if test "$?" -eq 0; then
72 echo "## VirtualBox NetAdapter (Ipv6) is still plumbed"
73 echo "## Trying to remove old NetAdapter..."
74 $BIN_IFCONFIG vboxnet0 inet6 unplumb
75 if test "$?" -ne 0; then
76 echo "## VirtualBox NetAdapter 'vboxnet0' IPv6 couldn't be unplumbed (probably in use)."
77 abort_error
78 fi
79 fi
80fi
81
82exit 0
83
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