Changeset 82844 in vbox for trunk/src/VBox/ValidationKit/testboxscript
- Timestamp:
- Jan 23, 2020 3:24:24 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/linux/testboxscript-service.sh
r81846 r82844 139 139 done 140 140 ARGS="$ARGS --pidfile '$PIDFILE'"; 141 if type -tscreen > /dev/null; then142 su - "${a_USER}" -c "screen -S ${service_name} -d -m ${ARGS} 143 elif type -ttmux > /dev/null; then141 if type screen > /dev/null; then 142 su - "${a_USER}" -c "screen -S ${service_name} -d -m ${ARGS}"; 143 elif type tmux > /dev/null; then 144 144 su - "${a_USER}" -c "tmux new-session -AdD -s ${service_name} ${ARGS}"; 145 145 else
Note:
See TracChangeset
for help on using the changeset viewer.