1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
#!/bin/sh
## @file
#
# VirtualBox checkinstall script for Solaris.
#
#
# Copyright (C) 2009-2012 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
#
infoprint()
{
echo 1>&2 "$1"
}
errorprint()
{
echo 1>&2 "## $1"
}
abort_error()
{
errorprint "Please close all VirtualBox processes and re-run this installer."
exit 1
}
checkdep_svr4()
{
if test -z "$1"; then
errorprint "Missing argument to checkdep_svr4"
return 1
fi
$BIN_PKGINFO $BASEDIR_OPT "$1" >/dev/null 2>&1
if test $? -eq 0; then
return 0
fi
PKG_MISSING_SVR4="$PKG_MISSING_SVR4 $1"
return 1
}
checkdep_ips()
{
if test -z "$1"; then
errorprint "Missing argument to checkdep_svr4"
return 1
fi
# using "list" without "-a" only lists installed pkgs which is what we need
$BIN_PKG $BASEDIR_OPT list "$1" >/dev/null 2>&1
if test $? -eq 0; then
return 0
fi
PKG_MISSING_IPS="$PKG_MISSING_IPS $1"
return 1
}
# nothing to check for remote install
REMOTE_INST=0
if test "x${PKG_INSTALL_ROOT:=/}" != "x/"; then
BASEDIR_OPT="-R $PKG_INSTALL_ROOT"
REMOTE_INST=1
fi
# nothing to check for non-global zones
currentzone=`zonename`
if test "$currentzone" != "global"; then
exit 0
fi
infoprint "Checking package dependencies..."
PKG_MISSING_IPS=""
PKG_MISSING_SVR4=""
BIN_PKGINFO=`which pkginfo 2> /dev/null`
BIN_PKG=`which pkg 2> /dev/null`
if test -x "$BIN_PKG"; then
checkdep_ips "runtime/python-26"
checkdep_ips "system/library/iconv/utf-8"
else
PKG_MISSING_IPS="runtime/python-26 system/library/iconv/utf-8"
fi
if test -x "$BIN_PKGINFO"; then
checkdep_svr4 "SUNWPython"
checkdep_svr4 "SUNWPython-devel"
checkdep_svr4 "SUNWuiu8"
else
PKG_MISSING_SVR4="SUNWPython SUNWPython-devel SUNWuiu8"
fi
if test "$PKG_MISSING_IPS" != "" && test "$PKG_MISSING_SVR4" != ""; then
if test ! -x "$BIN_PKG" && test ! -x "$BIN_PKGINFO"; then
errorprint "Missing or non-executable binaries: pkg ($BIN_PKG) and pkginfo ($BIN_PKGINFO)."
errorprint "Cannot check for dependencies."
errorprint ""
errorprint "Please install one of the required packaging system."
exit 1
fi
errorprint "Missing packages: "
errorprint "IPS : $PKG_MISSING_IPS"
errorprint "SVr4: $PKG_MISSING_SVR4"
errorprint ""
errorprint "Please install either the IPS or SVr4 packages before installing VirtualBox."
exit 1
else
infoprint "Done."
fi
# nothing more to do for remote installs
if test "$REMOTE_INST" -eq 1; then
exit 0
fi
# Check if the Zone Access service is holding open vboxdrv, if so stop & remove it
servicefound=`svcs -H "svc:/application/virtualbox/zoneaccess" 2> /dev/null | grep '^online'`
if test ! -z "$servicefound"; then
infoprint "VirtualBox's zone access service appears to still be running."
infoprint "Halting & removing zone access service..."
/usr/sbin/svcadm disable -s svc:/application/virtualbox/zoneaccess
# Don't delete the service, handled by manifest class action
# /usr/sbin/svccfg delete svc:/application/virtualbox/zoneaccess
fi
# Check if the Web service is running, if so stop & remove it
servicefound=`svcs -H "svc:/application/virtualbox/webservice" 2> /dev/null | grep '^online'`
if test ! -z "$servicefound"; then
infoprint "VirtualBox web service appears to still be running."
infoprint "Halting & removing webservice..."
/usr/sbin/svcadm disable -s svc:/application/virtualbox/webservice
# Don't delete the service, handled by manifest class action
# /usr/sbin/svccfg delete svc:/application/virtualbox/webservice
fi
# Check if the autostart service is running, if so stop & remove it
servicefound=`svcs -H "svc:/application/virtualbox/autostart" 2> /dev/null | grep '^online'`
if test ! -z "$servicefound"; then
infoprint "VirtualBox autostart service appears to still be running."
infoprint "Halting & removing autostart service..."
/usr/sbin/svcadm disable -s svc:/application/virtualbox/autostart
fi
# Check if VBoxSVC is currently running
VBOXSVC_PID=`ps -eo pid,fname | grep VBoxSVC | grep -v grep | awk '{ print $1 }'`
if test ! -z "$VBOXSVC_PID" && test "$VBOXSVC_PID" -ge 0; then
errorprint "VirtualBox's VBoxSVC (pid $VBOXSVC_PID) still appears to be running."
abort_error
fi
# Check if VBoxNetDHCP is currently running
VBOXNETDHCP_PID=`ps -eo pid,fname | grep VBoxNetDHCP | grep -v grep | awk '{ print $1 }'`
if test ! -z "$VBOXNETDHCP_PID" && test "$VBOXNETDHCP_PID" -ge 0; then
errorprint "VirtualBox's VBoxNetDHCP (pid $VBOXNETDHCP_PID) still appears to be running."
abort_error
fi
# Check if VBoxNetNAT is currently running
VBOXNETNAT_PID=`ps -eo pid,fname | grep VBoxNetNAT | grep -v grep | awk '{ print $1 }'`
if test ! -z "$VBOXNETNAT_PID" && test "$VBOXNETNAT_PID" -ge 0; then
errorprint "VirtualBox's VBoxNetNAT (pid $VBOXNETNAT_PID) still appears to be running."
abort_error
fi
# Check if vboxnet is still plumbed, if so try unplumb it
BIN_IFCONFIG=`which ifconfig 2> /dev/null`
if test -x "$BIN_IFCONFIG"; then
vboxnetup=`$BIN_IFCONFIG vboxnet0 >/dev/null 2>&1`
if test "$?" -eq 0; then
infoprint "VirtualBox NetAdapter is still plumbed"
infoprint "Trying to remove old NetAdapter..."
$BIN_IFCONFIG vboxnet0 unplumb
if test "$?" -ne 0; then
errorprint "VirtualBox NetAdapter 'vboxnet0' couldn't be unplumbed (probably in use)."
abort_error
fi
fi
vboxnetup=`$BIN_IFCONFIG vboxnet0 inet6 >/dev/null 2>&1`
if test "$?" -eq 0; then
infoprint "VirtualBox NetAdapter (Ipv6) is still plumbed"
infoprint "Trying to remove old NetAdapter..."
$BIN_IFCONFIG vboxnet0 inet6 unplumb
if test "$?" -ne 0; then
errorprint "VirtualBox NetAdapter 'vboxnet0' IPv6 couldn't be unplumbed (probably in use)."
abort_error
fi
fi
fi
# If we are using SVR4 packages then make sure that SMF has finished
# disabling any services left over from a previous installation which
# may interfere with installing new ones. Should only be relevant on
# Solaris 11.
if test -x "$BIN_PKGINFO"; then
for i in 1 2 3 4 5 6 7 8 9 10; do
svcs -a | grep virtualbox >/dev/null || break
if test "${i}" = "1"; then
printf "Waiting for services from previous installation to be removed."
else
printf "."
fi
sleep 1
done
test "${i}" = "1" || printf "\n"
fi
exit 0
|