aboutsummaryrefslogtreecommitdiffstats
path: root/hyperbot_fixer
blob: 36476604530486ba0274b2e01cc0e68026ef8424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/bash

while true
do
    sleep 30m

    # If nothing has been written to the log for 30 minutes then we assume
    # hyperbot is dead.
    if [[ -z $(find logs/ -iname 'raw.log' -mmin -30) ]]
    then
        # Kill all hyperbot processes
        while read -r line
        do
            # If it's not the pid of this process then kill it.
            [[ "${line}" != "$$" ]] && kill "${line}" &>/dev/null
        done < <( pgrep -u hyperbot )

        # Start hyperbot
        cd /srv/hyperbot

        ./envbot &
        ./issues_change_detector &
    fi
done