Browse Source

tmux Session wird nun detached gestartet

main
Niels Peretzke 3 years ago
parent
commit
5bbca7bf24
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      control.sh

+ 2
- 2
control.sh View File

@ -15,7 +15,7 @@ do
case $opt in
"Server starten")
echo "Server wird gestartet..."
tmux new -n $INSTANCE_NAME $START_CMD
tmux new -d -n $INSTANCE_NAME $START_CMD
break
;;
"Server stoppen")
@ -41,7 +41,7 @@ do
tmux send-keys -t $INSTANCE_NAME.0 'quit' ENTER
tmux send-keys -t $INSTANCE_NAME.0 $START_CMD ENTER
tmux new -d -n $INSTANCE_NAME $START_CMD
break
;;
"Abbruch")


Loading…
Cancel
Save