diff --git a/CHANGELOG.md b/CHANGELOG.md index bf4b68b..195d7bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ Changelog of Git Changelog.
+
+
name and path of the stats socket
+which mode to use in the defaults block
-48 49 50 51 @@ -511,10 +528,12 @@ rsyslog forwarding supported. 92 93 94 -95+95 +96 +97
# File 'manifests/params.pp', line 48
+ # File 'manifests/params.pp', line 49
class cd_haproxy::params (
@@ -530,6 +549,12 @@ $hy_fw_order_no = '50',
# main config
$hy_http_port = '80',
$hy_https_port = '443',
+$hy_chroot = '/var/lib/haproxy',
+$hy_pid = '/var/run/haproxy.pid',
+$hy_maxconn = '4000',
+$hy_show_stats = true,
+$hy_stats_socket = '/var/lib/haproxy/stats',
+$hy_default_mode = 'http',
# user
$hy_user_name = 'haproxy',
@@ -540,11 +565,6 @@ $hy_user_shell = '/sbin/nologin',
# logging
$hy_log_target = '127.0.0.1',
$hy_log_facility = 'local2',
-$hy_chroot = '/var/lib/haproxy',
-$hy_pid = '/var/run/haproxy.pid',
-$hy_maxconn = '4000',
-$hy_show_stats = true,
-$hy_stats_socket = '/var/lib/haproxy/stats',
) {