mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-14 10:52:49 +02:00
9 lines
152 B
Bash
9 lines
152 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
printf "READY\n";
|
||
|
|
||
|
while read line; do
|
||
|
echo "Processing Event: $line" >&2;
|
||
|
kill -3 $(cat "/var/run/supervisord.pid")
|
||
|
done < /dev/stdin
|