Silence tmux

This commit is contained in:
mathiascode 2019-09-21 06:55:25 +03:00
parent 7ada17972e
commit e32e8e57a3

View file

@ -12,17 +12,17 @@ chmod -R 500 plugins/bStats/ plugins/PluginMetrics/ plugins/ProtocolLib/
git clone git@github.com:kaboomserver/schematics.git plugins/FastAsyncWorldEdit/schematics/
while true; do
tmux new -d -s server 'sh -x script/server'
tmux new -d -s remote 'sh -x script/remote'
tmux new -d -s server 'sh -x script/webconsole'
tmux new -d -s schematics 'sh -x script/schematics'
tmux new -d -s server 'sh -x script/server' >/dev/null
tmux new -d -s remote 'sh -x script/remote' >/dev/null
tmux new -d -s server 'sh -x script/webconsole' >/dev/null
tmux new -d -s schematics 'sh -x script/schematics' >/dev/null
sleep 5
done &
sleep 30
while true; do
tmux new -d -s alivecheck 'sh -x script/alivecheck'
tmux new -d -s alivecheck 'sh -x script/alivecheck' >/dev/null
sleep 5
done &