github.com/skippbox/kompose-origin@v0.0.0-20160524133224-16a9dca7bac2/script/.integration-daemon-stop (about) 1 #!/bin/bash 2 3 trap - EXIT # reset EXIT trap applied in .integration-daemon-start 4 5 for pidFile in $(find "$DEST" -name docker.pid); do 6 pid=$(set -x; cat "$pidFile") 7 ( set -x; kill "$pid" ) 8 if ! wait "$pid"; then 9 echo >&2 "warning: PID $pid from $pidFile had a nonzero exit code" 10 fi 11 done