Changeset 58416 in vbox
- Timestamp:
- Oct 26, 2015 11:56:38 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/prerm-common.sh
r58324 r58416 34 34 35 35 # Stop the ballon control service 36 stop_init_script vboxballoonctrl-service 2>/dev/null36 stop_init_script vboxballoonctrl-service >/dev/null 2>&1 37 37 # Stop the autostart service 38 stop_init_script vboxautostart-service 2>/dev/null38 stop_init_script vboxautostart-service >/dev/null 2>&1 39 39 # Stop the web service 40 stop_init_script vboxweb-service 2>/dev/null40 stop_init_script vboxweb-service >/dev/null 2>&1 41 41 # Do this check here after we terminated the web service: check whether VBoxSVC 42 42 # is running and exit if it can't be stopped. … … 53 53 remove_init_script vboxweb-service 54 54 # Stop kernel module and uninstall runlevel script 55 stop_init_script vboxdrv 2>/dev/null55 stop_init_script vboxdrv >/dev/null 2>&1 56 56 delrunlevel vboxdrv 57 57 remove_init_script vboxdrv 58 58 # And do final clean-up 59 "${MY_PATH}/vboxdrv.sh" cleanup 59 "${MY_PATH}/vboxdrv.sh" cleanup >/dev/null # Do not silence errors for now 60 60 # Stop host networking and uninstall runlevel script (obsolete) 61 stop_init_script vboxnet 2>/dev/null62 delrunlevel vboxnet 2>/dev/null63 remove_init_script vboxnet 2>/dev/null61 stop_init_script vboxnet >/dev/null 2>&1 62 delrunlevel vboxnet >/dev/null 2>&1 63 remove_init_script vboxnet >/dev/null 2>&1 64 64 rm -f /sbin/vboxconfig 65 65 exit 0
Note:
See TracChangeset
for help on using the changeset viewer.