mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-16 04:24:56 +02:00
10 lines
146 B
Bash
10 lines
146 B
Bash
#!/bin/bash
|
|
BIN=bin/thalos-server
|
|
|
|
DIR=$(dirname $(realpath $0))
|
|
cd "$DIR"
|
|
|
|
date
|
|
./stop.sh
|
|
timestamp=`date +%s`
|
|
$BIN -p ./thalos.pid 2> out.log &
|