summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-08-22 11:52:46 -0700
committerGitHub <noreply@github.com>2016-08-22 11:52:46 -0700
commit1cd7fcd8865eaaaa8a42dc1baa57c10694ce5d0b (patch)
tree700baac750923479ea825b068d1cf7d27efa74f1
parent251b953c4366e52ef7782aed9bdabb8c28a10f6f (diff)
parenta4d9be247da710dad4edf30e6b270e7a8e9a1502 (diff)
downloadchef-1cd7fcd8865eaaaa8a42dc1baa57c10694ce5d0b.tar.gz
Merge pull request #5223 from chef/jkeiser-patch-1
Stop logging "SIGQUIT is not a command" in tests
-rwxr-xr-xspec/functional/assets/testchefsubsys5
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/functional/assets/testchefsubsys b/spec/functional/assets/testchefsubsys
index e9ff30d4aa..e5c2f8cfc4 100755
--- a/spec/functional/assets/testchefsubsys
+++ b/spec/functional/assets/testchefsubsys
@@ -5,7 +5,6 @@ sleep 120 &
pid="$!"
-trap 'echo I am going down, so killing off my processes..; kill $pid; exit' SIGHUP SIGINT
- SIGQUIT SIGTERM
+trap 'echo I am going down, so killing off my processes..; kill $pid; exit' SIGHUP SIGINT SIGQUIT SIGTERM
-wait \ No newline at end of file
+wait