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 |
|
---|
19 | abort_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
|
---|
26 | if test "x${BASEDIR}" != "x/"; then
|
---|
27 | exit 0
|
---|
28 | fi
|
---|
29 |
|
---|
30 | # Check if VBoxSVC is currently running
|
---|
31 | VBOXSVC_PID=`ps -eo pid,fname | grep VBoxSVC | grep -v grep | awk '{ print $1 }'`
|
---|
32 | if 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
|
---|
35 | fi
|
---|
36 |
|
---|
37 | # Check if the Zone Access service is holding open vboxdrv, if so stop & remove it
|
---|
38 | servicefound=`svcs -H "svc:/application/virtualbox/zoneaccess" 2> /dev/null | grep '^online'`
|
---|
39 | if 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
|
---|
45 | fi
|
---|
46 |
|
---|
47 | # Check if the Web service is running, if so stop & remove it
|
---|
48 | servicefound=`svcs -H "svc:/application/virtualbox/webservice" 2> /dev/null | grep '^online'`
|
---|
49 | if 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
|
---|
55 | fi
|
---|
56 |
|
---|
57 | # Check if vboxnet is still plumbed, if so try unplumb it
|
---|
58 | BIN_IFCONFIG=`which ifconfig 2> /dev/null`
|
---|
59 | if 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
|
---|
80 | fi
|
---|
81 |
|
---|
82 | exit 0
|
---|
83 |
|
---|