summaryrefslogtreecommitdiff
path: root/spec/functional/assets/testchefsubsys
blob: e5c2f8cfc40b53490bccf2ba173ec7c478c10ab0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# trapchild

sleep 120 &

pid="$!"

trap 'echo I am going down, so killing off my processes..; kill $pid; exit' SIGHUP SIGINT SIGQUIT SIGTERM

wait