This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/restartcloudbot.sh
2017-02-24 17:08:01 +01:00

11 lines
142 B
Bash
Executable file

#!/bin/bash
cd $(dirname $0)
(
while true
do
sudo -u cloudbot ./cloudbot.py 2>&1 | logger -s -t $(basename $0)
sleep 10
done
) &
disown $!