commit | c04b16cb287bc40d648263410dd47d972312975d | [log] [tgz] |
---|---|---|
author | jesse.defer@asu.edu <jesse.defer@asu.edu> | Sat Oct 31 20:29:56 2015 -0700 |
committer | Willy Tarreau <w@1wt.eu> | Sun Nov 01 20:22:42 2015 +0100 |
tree | 65597a612547f44895991892d9dbe3fc30455493 | |
parent | e4c4b7dda6eb55a48de6f961afae80bf2447b578 [diff] |
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 d02c367..f08fcb0 100644 --- a/examples/haproxy.init +++ b/examples/haproxy.init
@@ -94,7 +94,7 @@ $BIN -c -q -V -f $CFG } -quiet_check() +quiet_check() { $BIN -c -q -f $CFG }