Changeset 20696 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Jun 18, 2009 5:09:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/checkinstall.sh
r20591 r20696 37 37 fi 38 38 39 # Check if the Zone Access service is holding open vboxdrv 40 zoneaccessfound=`svcs -a | grep "virtualbox/zoneaccess"` 41 if test ! -z "$zoneaccessfound"; then 42 echo "## VirtualBox's Zone Access service appears to still be running." 43 abort_error 39 # Check if the Zone Access service is holding open vboxdrv, if so stop & remove it 40 zoneaccessfound=`svcs -a | grep "virtualbox/zoneaccess" | awk '{ print $1 }'` 41 if test ! -z "$zoneaccessfound" 42 if test "$zoneaccessfound" = "online"; then 43 echo "## VirtualBox's Zone Access service appears to still be running." 44 echo "## Stopping & removing service..." 45 /usr/sbin/svcadm disable -s svc:/application/virtualbox/zoneaccess 46 fi 47 /usr/sbin/svccfg delete svc:/application/virtualbox/zoneaccess 44 48 fi 45 49
Note:
See TracChangeset
for help on using the changeset viewer.