From c04b16cb287bc40d648263410dd47d972312975d Mon Sep 17 00:00:00 2001 From: "jesse.defer@asu.edu" Date: Sat, 31 Oct 2015 20:29:56 -0700 Subject: [PATCH] BUG/MINOR: examples/haproxy.init: missing brace in quiet_check() There is a missing curly brace in the quiet_check function of the example init script. [note: This needs to be backported to 1.6] --- examples/haproxy.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/haproxy.init b/examples/haproxy.init index d02c36710..f08fcb0dd 100644 --- a/examples/haproxy.init +++ b/examples/haproxy.init @@ -94,7 +94,7 @@ check() { $BIN -c -q -V -f $CFG } -quiet_check() +quiet_check() { $BIN -c -q -f $CFG }