This repository has been archived on 2025-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
docker-anope/scripts/start-watchdog.sh

8 lines
122 B
Bash

#!/bin/bash
killpid="$(pidof services)"
while true
do
tail --pid=$killpid -f /dev/null
kill "$(pidof tail)"
exit 0
done