Changeset 47474 in vbox for trunk/src/VBox
- Timestamp:
- Jul 30, 2013 12:33:41 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r47315 r47474 1108 1108 # 1 second intervals to see if our service has been successfully imported and timeout after 'cmax' seconds. 1109 1109 $BIN_SVCADM restart svc:system/manifest-import:default 1110 cmax=321111 success=01112 $BIN_SVCS virtualbox/zoneaccess >/dev/null 2>&11113 while test "$?" -ne 0;1114 do1115 sleep 11116 cslept=`expr $cslept + 1`1117 if test "$cslept" -eq "$cmax"; then1118 success=11119 break1120 fi1121 $BIN_SVCS virtualbox/zoneaccess >/dev/null 2>&11122 done1123 1110 1124 1111 # Start ZoneAccess service, other services are disabled by default. 1125 if test "$success" -eq 0; then 1126 start_service "Zone access service" "virtualbox/zoneaccess" "svc:/application/virtualbox/zoneaccess:default" \ 1127 "/var/svc/log/application-virtualbox-zoneaccess:default.log" 1128 else 1129 echo "## Service import failed." 1130 echo "## See /var/svc/log/system-manifest-import:default.log for details." 1131 fi 1132 fi 1112 start_service "Zone access service" "virtualbox/zoneaccess" "svc:/application/virtualbox/zoneaccess:default" \ 1113 "/var/svc/log/application-virtualbox-zoneaccess:default.log" 1133 1114 fi 1134 1115
Note:
See TracChangeset
for help on using the changeset viewer.