Changeset 58820 in vbox
- Timestamp:
- Nov 23, 2015 12:51:11 PM (9 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
-
Additions/linux/installer/vboxadd.sh (modified) (1 diff)
-
Installer/linux/run-inst.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r58359 r58820 378 378 chcon -t bin_t "$BUILDINTMP" > /dev/null 2>&1 379 379 380 setup_modules || \ 380 if setup_modules; then 381 mod_succ=0 382 else 383 mod_succ=1 381 384 show_error "Please check that you have gcc, make, the header files for your Linux kernel and possibly perl installed." 382 mod_succ="$?"385 fi 383 386 extra_setup 384 387 if [ "$mod_succ" -eq "0" ]; then -
trunk/src/VBox/Installer/linux/run-inst.sh
r57940 r58820 421 421 install_init_script "$i" "`basename "$i"`" 2>> "${LOGFILE}" 422 422 addrunlevel "`basename "$i"`" 2>> "${LOGFILE}" 423 test -n "$DO_SETUP" && grep -q '^# *setup_script *$' "${i}" && "${i}" setup 1>&2 2>> "${LOGFILE}" 424 start_init_script "`basename "$i"`" 2>> "${LOGFILE}" 423 if test -n "$DO_SETUP" && grep -q '^# *setup_script *$' "${i}"; then 424 if "${i}" setup 1>&2 2>> "${LOGFILE}"; then 425 start_init_script "`basename "$i"`" 2>> "${LOGFILE}" 426 else 427 echo 1>&2 "Failed to set up service `basename "$i"`, please check the log file" 428 echo 1>&2 "${LOGFILE} for details." 429 fi 430 fi 425 431 fi 426 432 done
Note:
See TracChangeset
for help on using the changeset viewer.

