Changeset 36700 in vbox
- Timestamp:
- Apr 18, 2011 9:19:38 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71213
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/install.sh
r35204 r36700 5 5 6 6 # 7 # Copyright (C) 2007-201 0Oracle Corporation7 # Copyright (C) 2007-2011 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 104 104 check_binary "/usr/bin/VBoxVRDP" "$install_dir" && 105 105 check_binary "/usr/bin/VBoxHeadless" "$install_dir" && 106 check_binary "/usr/bin/VBoxBalloonCtrl" "$install_dir" && 106 107 check_binary "/usr/bin/vboxwebsrv" "$install_dir" 107 108 } … … 119 120 # Set up logging before anything else 120 121 create_log $LOG 122 123 # Now stop the ballon control service otherwise it will keep VBoxSVC running 124 stop_init_script vboxballoonctrl-service 121 125 122 126 # Now stop the web service otherwise it will keep VBoxSVC running … … 369 373 # Install runlevel scripts 370 374 install_init_script vboxdrv.sh vboxdrv 375 install_init_script vboxballoonctrl-service.sh vboxballoonctrl-service 371 376 install_init_script vboxweb-service.sh vboxweb-service 372 377 delrunlevel vboxdrv > /dev/null 2>&1 373 378 addrunlevel vboxdrv 20 80 # This may produce useful output 379 delrunlevel vboxballoonctrl-service > /dev/null 2>&1 380 addrunlevel vboxballoonctrl-service 25 75 # This may produce useful output 374 381 delrunlevel vboxweb-service > /dev/null 2>&1 375 382 addrunlevel vboxweb-service 25 75 # This may produce useful output … … 384 391 ln -sf $INSTALLATION_DIR/VBox.sh /usr/bin/VBoxVRDP 385 392 ln -sf $INSTALLATION_DIR/VBox.sh /usr/bin/VBoxHeadless 393 ln -sf $INSTALLATION_DIR/VBox.sh /usr/bin/VBoxBalloonCtrl 386 394 ln -sf $INSTALLATION_DIR/VBox.sh /usr/bin/vboxwebsrv 387 395 ln -sf $INSTALLATION_DIR/VBox.png /usr/share/pixmaps/VBox.png … … 495 503 RC_SCRIPT=1 496 504 fi 505 start_init_script vboxballoonctrl-service 497 506 start_init_script vboxweb-service 498 507 log "" -
trunk/src/VBox/Installer/linux/routines.sh
r36314 r36700 3 3 # 4 4 5 # Copyright (C) 2007-201 0Oracle Corporation5 # Copyright (C) 2007-2011 Oracle Corporation 6 6 # 7 7 # This file is part of VirtualBox Open Source Edition (OSE), as … … 331 331 # Stop the init script "name" 332 332 # 333 # syntax: st art_init_script name333 # syntax: stop_init_script name 334 334 335 335 stop_init_script() {
Note:
See TracChangeset
for help on using the changeset viewer.