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
|