VirtualBox

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

Last change on this file since 28800 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 2.8 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
26# Check if VBoxSVC is currently running
27VBOXSVC_PID=`ps -eo pid,fname | grep VBoxSVC | grep -v grep | awk '{ print $1 }'`
28if test ! -z "$VBOXSVC_PID" && test "$VBOXSVC_PID" -ge 0; then
29 echo "## VirtualBox's VBoxSVC (pid $VBOXSVC_PID) still appears to be running."
30 abort_error
31fi
32
33# Check if the Zone Access service is holding open vboxdrv, if so stop & remove it
34servicefound=`svcs -H "svc:/application/virtualbox/zoneaccess" 2> /dev/null | grep '^online'`
35if test ! -z "$servicefound"; then
36 echo "## VirtualBox's zone access service appears to still be running."
37 echo "## Halting & removing zone access service..."
38 /usr/sbin/svcadm disable -s svc:/application/virtualbox/zoneaccess
39 /usr/sbin/svccfg delete svc:/application/virtualbox/zoneaccess
40fi
41
42# Check if the Web service is running, if so stop & remove it
43servicefound=`svcs -H "svc:/application/virtualbox/webservice" 2> /dev/null | grep '^online'`
44if test ! -z "$servicefound"; then
45 echo "## VirtualBox web service appears to still be running."
46 echo "## Halting & removing webservice..."
47 /usr/sbin/svcadm disable -s svc:/application/virtualbox/webservice
48 /usr/sbin/svccfg delete svc:/application/virtualbox/webservice
49fi
50
51# Check if vboxnet is still plumbed, if so try unplumb it
52BIN_IFCONFIG=`which ifconfig 2> /dev/null`
53if test -x "$BIN_IFCONFIG"; then
54 vboxnetup=`$BIN_IFCONFIG vboxnet0 >/dev/null 2>&1`
55 if test "$?" -eq 0; then
56 echo "## VirtualBox NetAdapter is still plumbed"
57 echo "## Trying to remove old NetAdapter..."
58 $BIN_IFCONFIG vboxnet0 unplumb
59 if test "$?" -ne 0; then
60 echo "## VirtualBox NetAdapter 'vboxnet0' couldn't be unplumbed (probably in use)."
61 abort_error
62 fi
63 fi
64 vboxnetup=`$BIN_IFCONFIG vboxnet0 inet6 >/dev/null 2>&1`
65 if test "$?" -eq 0; then
66 echo "## VirtualBox NetAdapter (Ipv6) is still plumbed"
67 echo "## Trying to remove old NetAdapter..."
68 $BIN_IFCONFIG vboxnet0 inet6 unplumb
69 if test "$?" -ne 0; then
70 echo "## VirtualBox NetAdapter 'vboxnet0' IPv6 couldn't be unplumbed (probably in use)."
71 abort_error
72 fi
73 fi
74fi
75
76exit 0
77
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