File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/chef-16.3.45/spec/functional/assets/

Viewing File: testchefsubsys

#!/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