Changeset 59883 in vbox
- Timestamp:
- Mar 1, 2016 11:23:08 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105786
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/install.sh
r59871 r59883 371 371 372 372 info "" 373 if test -n "${START_SERVICES}" || lsmod | grep -q vboxdrv 374 then 375 info "VirtualBox has been installed successfully." 376 else 377 info "VirtualBox has been installed successfully, but the kernel module could not" 378 info "be built. When you have fixed the problems preventing this, execute" 379 info " /sbin/vboxconfig" 380 info "as administrator to build it." 381 fi 373 info "VirtualBox has been installed successfully." 382 374 info "" 383 375 info "You will find useful information about using VirtualBox in the user manual" -
trunk/src/VBox/Installer/linux/postinst-common.sh
r59426 r59883 98 98 test -n "${START}" && 99 99 { 100 if ! "${MY_PATH}/vboxdrv.sh" setup; then 101 "${MY_PATH}/check_module_dependencies.sh" >&2 102 echo >&2 103 echo "There were problems setting up VirtualBox. To re-start the set-up process, run" >&2 104 echo " /sbin/vboxconfig" >&2 105 echo "as root." >&2 106 fi 100 107 start_init_script vboxdrv 101 108 start_init_script vboxballoonctrl-service -
trunk/src/VBox/Installer/linux/vboxdrv.sh
r58672 r59883 108 108 { 109 109 fail_msg "$1" 110 exit 0110 exit 1 111 111 } 112 112
Note:
See TracChangeset
for help on using the changeset viewer.