- Timestamp:
- Mar 14, 2014 1:18:47 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r50787 r50788 907 907 $BIN_SVCADM enable -s "$3" 908 908 if test "$?" -eq 0; then 909 subprint " Loaded: $1"909 subprint "Enabled: $1" 910 910 return 0 911 911 else 912 warnprint " Loading $1 ...FAILED."912 warnprint "Enabling $1 ...FAILED." 913 913 warnprint "Refer $4 for details." 914 914 fi … … 935 935 # $BIN_SVCCFG delete "$3" 936 936 if test "$?" -eq 0; then 937 subprint " Unloaded: $1"937 subprint "Disabled: $1" 938 938 else 939 subprint " Unloading: $1 ...ERROR(S)."939 subprint "Disabling: $1 ...ERROR(S)." 940 940 fi 941 941 fi … … 959 959 stop_service "Autostart service" "virtualbox/autostart" "svc:/application/virtualbox/autostart:default" 960 960 stop_service "Zone access service" "virtualbox/zoneaccess" "svc:/application/virtualbox/zoneaccess:default" 961 962 # DEBUG x4600b: verify that the ZoneAccess process is really gone 963 is_process_running "VBoxZoneAccess" 964 if test "$?" -eq 1; then 965 warnprint "VBoxZoneAccess is alive despite its service being dead. Killing..." 966 stop_process "VBoxZoneAccess" 967 fi 961 968 962 969 # unplumb all vboxnet instances for non-remote installs
Note:
See TracChangeset
for help on using the changeset viewer.