Hi, Is there any daemontools-like daemon management without root access? I have several scripts such as IRC bots, and some of them are still unstable so it stops once per several days. Now I'm running scripts on top of tmux, but restarting dead scripts, and even checking if scripts are running is annoying.
I thought daemontools is a solution, but it requires root access. Is there any simple solution for my situation? Currently I'm running all my scripts with infinite loop with sleeps[1]. It solves the problem, but I believe there is a better way. [1] while true; do ./some_script.sh; sleep 10; done