From: jesse.defer@asu.edu Date: Sun, 1 Nov 2015 03:29:56 +0000 (-0700) Subject: BUG/MINOR: examples/haproxy.init: missing brace in quiet_check() X-Git-Tag: v1.7-dev1~62 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c04b16cb287bc40d648263410dd47d972312975d;p=thirdparty%2Fhaproxy.git 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] --- diff --git a/examples/haproxy.init b/examples/haproxy.init index d02c367109..f08fcb0dd9 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 }