Changeset 58591 in vbox for trunk/src/VBox/ValidationKit/testboxscript/linux/setup-routines.sh
- Timestamp:
- Nov 5, 2015 7:13:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/linux/setup-routines.sh
r56295 r58591 68 68 69 69 os_enable_service() { 70 /etc/init.d/testboxscript-service start70 stop_init_script testboxscript-service 71 71 return 0; 72 72 } 73 73 74 74 os_disable_service() { 75 if [ -f /etc/init.d/testboxscript-service ]; then 76 /etc/init.d/testboxscript-service stop || true # Ignore 77 fi 75 stop_init_script testboxscript-service 2>&1 || true # Ignore 78 76 return 0; 79 77 }
Note:
See TracChangeset
for help on using the changeset viewer.