* released 1.2.1 (1.1.28)
* added the '-V' command line option to verbosely report errors even though
  the -q or 'quiet' options are specified. This is useful with '-c'.
* added a Red Hat init script and a .spec from Simon Matter <simon.matter@invoca.ch>
* added 'rspdeny' and 'rspideny' to block certain responses to avoid sensible
  information leak from servers.
* more examples added into the configuration
diff --git a/examples/init.haproxy.flx0 b/examples/init.haproxy.flx0
index 4b73bd8..a7edd9c 100644
--- a/examples/init.haproxy.flx0
+++ b/examples/init.haproxy.flx0
@@ -7,7 +7,7 @@
 option	cmdline		reserved_option	'$bin -f ${opt_config} -p ${pidfile} -D -q'
 
 function do_help {
-    echo "Usage: ${0##*/} <status|start|stop|help>"
+    echo "Usage: ${0##*/} <status|start|stop|help|conf>"
     echo "List of config.rc options (name, type, default value, current value) :"
     echo
     echo "   - config ; def=/etc/haproxy/haproxy.cfg ; cur=$opt_confdir"
@@ -15,6 +15,11 @@
     exit 1 
 }
 
+# reads the configuration file and checks its syntax.
+function do_conf {
+    $bin -c -V -q -f ${opt_config}
+}
+
 # assign default values to options and variables before parsing the cfg file
 function fct_begin_section {
     pidfile="/var/run/haproxy${2:+-$2}.pid"