mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2026-01-18 04:14:04 +01:00
8 lines
129 B
Bash
8 lines
129 B
Bash
#!/bin/bash
|
|
|
|
printf "READY\n";
|
|
|
|
while read line; do
|
|
echo "Processing Event: $line" >&2;
|
|
kill -SIGQUIT $PPID
|
|
done < /dev/stdin |