Changeset 36687 in vbox
- Timestamp:
- Apr 15, 2011 4:44:36 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71194
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/makepackage.sh
r36686 r36687 177 177 # Manifest class action scripts 178 178 filelist_fixup prototype '$3 == "var/svc/manifest/application/virtualbox/virtualbox-webservice.xml"' '$2 = "manifest";$6 = "sys"' 179 filelist_fixup prototype '$3 == "var/svc/manifest/application/virtualbox/virtualbox-balloonctrl.xml"' '$2 = "manifest";$6 = "sys"' 179 180 filelist_fixup prototype '$3 == "var/svc/manifest/application/virtualbox/virtualbox-zoneaccess.xml"' '$2 = "manifest";$6 = "sys"' 180 181 -
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r36473 r36687 686 686 fi 687 687 688 # stop balloonctrl 689 servicefound=`$BIN_SVCS -a | grep "virtualbox/balloonctrl" 2>/dev/null` 690 if test ! -z "$servicefound"; then 691 $BIN_SVCADM disable -s svc:/application/virtualbox/balloonctrl:default 692 # Don't delete the manifest, this is handled by the manifest class action 693 # $BIN_SVCCFG delete svc:/application/virtualbox/balloonctrl:default 694 if test "$?" -eq 0; then 695 subprint "Unloaded: Balloon control service" 696 else 697 subprint "Unloading: Balloon control service ...ERROR(S)." 698 fi 699 fi 700 701 688 702 # stop zoneaccess service 689 703 servicefound=`$BIN_SVCS -a | grep "virtualbox/zoneaccess" 2>/dev/null` 690 704 if test ! -z "$servicefound"; then 691 $BIN_SVCADM disable -s svc:/application/virtualbox/zoneaccess 705 $BIN_SVCADM disable -s svc:/application/virtualbox/zoneaccess:default 692 706 # Don't delete the manifest, this is handled by the manifest class action 693 707 # $BIN_SVCCFG delete svc:/application/virtualbox/zoneaccess
Note:
See TracChangeset
for help on using the changeset viewer.