summaryrefslogtreecommitdiff
path: root/spec/functional/assets/testchefsubsys
blob: e9ff30d4aad9222763ecfec099802b65115b4502 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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