mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
42 lines
668 B
Bash
Executable File
42 lines
668 B
Bash
Executable File
#!/bin/bash
|
|
|
|
start_process() {
|
|
GOEXPERIMENT=arenas go run ./... &
|
|
process_pid=$!
|
|
child_process_pid=$(pgrep -P $process_pid)
|
|
}
|
|
|
|
is_process_running() {
|
|
ps -p $process_pid > /dev/null 2>&1
|
|
return $?
|
|
}
|
|
|
|
kill_process() {
|
|
kill $process_pid
|
|
kill $child_process_pid
|
|
}
|
|
|
|
start_process
|
|
|
|
while true; do
|
|
if ! is_process_running; then
|
|
echo "Process crashed or stopped. Restarting..."
|
|
start_process
|
|
fi
|
|
|
|
git fetch
|
|
|
|
local_head=$(git rev-parse HEAD)
|
|
remote_head=$(git rev-parse @{u})
|
|
|
|
if [ "$local_head" != "$remote_head" ]; then
|
|
kill_process
|
|
|
|
git pull
|
|
|
|
start_process
|
|
fi
|
|
|
|
sleep 60
|
|
done
|