From 179213f61c704d2c3a5eec7d3c1ffd6d3b1f0154 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sat, 1 Nov 2014 18:43:35 -0400 Subject: [PATCH] local-up-cluster: terminate all processes on SIGINT --- hack/local-up-cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/local-up-cluster.sh b/hack/local-up-cluster.sh index 3f5a3ada881..27d47e6ead9 100755 --- a/hack/local-up-cluster.sh +++ b/hack/local-up-cluster.sh @@ -147,6 +147,6 @@ cleanup() exit 0 } -trap cleanup EXIT +trap cleanup EXIT SIGINT while true; do read x; done