mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-13 01:45:59 +00:00
* postfix: split postfix-tlspol service into new container * postfix-tls-pol: added debug mode * pf-tlspol: removed obsoleted standalone conf from Dockerfiles * pf-tlspol: use git instead of wget
9 lines
152 B
Bash
Executable File
9 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
|