OP#669 initial commit with new autolayout

This commit is contained in:
2026-09-05 11:38:16 +02:00
parent 257ab516f3
commit 44660e2b9e
38 changed files with 146 additions and 5560 deletions

View File

@@ -1,5 +1,5 @@
## haproxy_cd::params.pp
# Module name: haproxy_cd
## confdroid_haproxy::params.pp
# Module name: confdroid_haproxy
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @param [String] pkg_ensure
# which [package type](https://confdroid.com/2017/05/puppet-type-package/)
@@ -55,7 +55,7 @@
# @param [String] hy_be_userlist backend userlist comment
# @param [Boolean] hy_manage_be_users whether to manage backend users
###############################################################################
class haproxy_cd::params (
class confdroid_haproxy::params (
String $pkg_ensure = 'latest',
Array $reqpackages = ['haproxy','httpd-tools'],
@@ -124,23 +124,23 @@ class haproxy_cd::params (
# files
$hy_main_config = "${hy_main_dir}/haproxy.cfg"
$hy_config_head_erb = 'haproxy_cd/haproxy_head.erb'
$hy_config_tail_erb = 'haproxy_cd/haproxy_tail.erb'
$hy_config_head_erb = 'confdroid_haproxy/haproxy_head.erb'
$hy_config_tail_erb = 'confdroid_haproxy/haproxy_tail.erb'
$hy_400_file = "${hy_errors_dir}/400.http"
$hy_400_erb = 'haproxy_cd/errors/400_http.erb'
$hy_400_erb = 'confdroid_haproxy/errors/400_http.erb'
$hy_403_file = "${hy_errors_dir}/403.http"
$hy_403_erb = 'haproxy_cd/errors/403_http.erb'
$hy_403_erb = 'confdroid_haproxy/errors/403_http.erb'
$hy_408_file = "${hy_errors_dir}/408.http"
$hy_408_erb = 'haproxy_cd/errors/408_http.erb'
$hy_408_erb = 'confdroid_haproxy/errors/408_http.erb'
$hy_500_file = "${hy_errors_dir}/500.http"
$hy_500_erb = 'haproxy_cd/errors/500_http.erb'
$hy_500_erb = 'confdroid_haproxy/errors/500_http.erb'
$hy_502_file = "${hy_errors_dir}/502.http"
$hy_502_erb = 'haproxy_cd/errors/502_http.erb'
$hy_502_erb = 'confdroid_haproxy/errors/502_http.erb'
$hy_503_file = "${hy_errors_dir}/503.http"
$hy_503_erb = 'haproxy_cd/errors/503_http.erb'
$hy_503_erb = 'confdroid_haproxy/errors/503_http.erb'
$hy_504_file = "${hy_errors_dir}/504.http"
$hy_504_erb = 'haproxy_cd/errors/504_http.erb'
$hy_504_erb = 'confdroid_haproxy/errors/504_http.erb'
# includes must be last
include haproxy_cd::main::config
include confdroid_haproxy::main::config
}