mailcow-dockerized/data/Dockerfiles/postfix/stop-supervisor.sh
2025-04-17 17:29:05 -05:00

8 lines
152 B
Bash
Executable file

#!/bin/bash
printf "READY\n";
while read line; do
echo "Processing Event: $line" >&2;
kill -3 $(cat "/var/run/supervisord.pid")
done < /dev/stdin