mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
printf "READY\n";
|
|
|
|
while read line; do
|
|
echo "Processing Event: $line" >&2;
|
|
kill -SIGQUIT $PPID
|
|
done < /dev/stdin
|