willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | . `dirname $0`/functions |
| 4 | |
| 5 | option config standard_option /etc/haproxy/haproxy.cfg |
| 6 | option bin reserved_option /usr/sbin/haproxy |
willy tarreau | fe2c5c1 | 2005-12-17 14:14:34 +0100 | [diff] [blame] | 7 | option cmdline reserved_option '$bin -f ${opt_config} -p ${pidfile} -D -q' |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 8 | |
| 9 | function do_help { |
willy tarreau | 982249e | 2005-12-18 00:57:06 +0100 | [diff] [blame] | 10 | echo "Usage: ${0##*/} <status|start|stop|help|conf>" |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 11 | echo "List of config.rc options (name, type, default value, current value) :" |
| 12 | echo |
| 13 | echo " - config ; def=/etc/haproxy/haproxy.cfg ; cur=$opt_confdir" |
| 14 | echo |
| 15 | exit 1 |
| 16 | } |
| 17 | |
willy tarreau | 982249e | 2005-12-18 00:57:06 +0100 | [diff] [blame] | 18 | # reads the configuration file and checks its syntax. |
| 19 | function do_conf { |
| 20 | $bin -c -V -q -f ${opt_config} |
| 21 | } |
| 22 | |
willy tarreau | fe2c5c1 | 2005-12-17 14:14:34 +0100 | [diff] [blame] | 23 | # assign default values to options and variables before parsing the cfg file |
| 24 | function fct_begin_section { |
| 25 | pidfile="/var/run/haproxy${2:+-$2}.pid" |
| 26 | } |
willy tarreau | eedaa9f | 2005-12-17 14:08:03 +0100 | [diff] [blame] | 27 | |
| 28 | load_config |
| 29 | |