Changeset 36473 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Mar 30, 2011 10:18:37 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r35097 r36473 793 793 if test "$REMOTEINST" -eq 1; then 794 794 subprint "Skipped for targetted installs." 795 fi 796 fi 797 798 # Enable Zone access service for non-remote installs, other services (Webservice) are delivered disabled by the manifest class action 799 if test "$REMOTEINST" -eq 0; then 800 servicefound=`$BIN_SVCS -a | grep "virtualbox/zoneaccess" | grep "disabled" 2>/dev/null` 801 if test ! -z "$servicefound"; then 802 /usr/sbin/svcadm enable -s svc:/application/virtualbox/zoneaccess 803 if test "$?" -eq 0; then 804 subprint "Loaded: Zone access service" 805 else 806 subprint "Loading Zone access service ...FAILED." 795 else 796 # Enable Zone access service for non-remote installs, other services (Webservice) are delivered disabled by the manifest class action 797 servicefound=`$BIN_SVCS -a | grep "virtualbox/zoneaccess" | grep "disabled" 2>/dev/null` 798 if test ! -z "$servicefound"; then 799 /usr/sbin/svcadm enable -s svc:/application/virtualbox/zoneaccess 800 if test "$?" -eq 0; then 801 subprint "Loaded: Zone access service" 802 else 803 subprint "Loading Zone access service ...FAILED." 804 fi 807 805 fi 808 806 fi … … 813 811 # but that cannot be helped. 814 812 if test -d $PKG_INSTALL_ROOT/usr/share/icons; then 815 infoprint "Installing MIME types and icons "813 infoprint "Installing MIME types and icons..." 816 814 if test "$REMOTEINST" -eq 0; then 817 815 /usr/bin/update-mime-database /usr/share/mime >/dev/null 2>&1 … … 954 952 --setupdrivers) 955 953 remove_drivers "$fatal" 954 infoprint "Installing VirtualBox drivers:" 956 955 install_drivers 957 956 ;;
Note:
See TracChangeset
for help on using the changeset viewer.