summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2016-08-18 12:17:25 -0700
committerGitHub <noreply@github.com>2016-08-18 12:17:25 -0700
commita4d9be247da710dad4edf30e6b270e7a8e9a1502 (patch)
treec9d56774cb83cf3af5ad8b80b564798ebe042578
parentf55d0053ce6646d2e925336f6766c3c8e018ad90 (diff)
downloadchef-jkeiser-patch-1.tar.gz
Stop logging "SIGQUIT is not a command" in testsjkeiser-patch-1
This looks like a typo was introduced; we're seeing this in the logs on nodes.
-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