Skip to content

Commit a05639d

Browse files
committed
Minor fixes for #152
1 parent 8112907 commit a05639d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,9 @@ Set up (the latest version of) [HAProxy](http://www.haproxy.org/) in Ubuntu syst
491491
* `haproxy_logforwards.{n}.backlog`: Give hints to the system about the approximate listen backlog desired size on connections accept.
492492
* `haproxy_logforwards.{n}.maxconn`: Fix the maximum number of concurrent connections on a log forwarder. 10 is the default.
493493
* `haproxy_logforwards.{n}.timeout client`: Set the maximum inactivity time on the client side.
494-
* `haproxy_logforwards.{n}.log`: [ log <address> [len <length>] [format <format>] [sample <ranges>:<sample_size>] <facility> [<level> [<minlevel>]] ]Used to configure target log servers. See more details on proxies documentation. If no format specified, haproxy tries to keep the incoming log format. Configured facility is ignored, except if incoming message does not present a facility but one is mandatory on the outgoing format. If there is no timestamp available in the input format, but the field exists in output format, haproxy will use the local date.
494+
* `haproxy_logforwards.{n}.log`: Log list declaration
495+
* `haproxy_logforwards.{n}.log.address`: [required]: Used to configure target log servers
496+
* `haproxy_logforwards.{n}.log.param`: [optional]: A list of parameters common to this log declarations. See more details on proxies documentation.
495497

496498
## Dependencies
497499

defaults/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ haproxy_resolvers: []
9797
# ACL files
9898
haproxy_acl_files: []
9999

100-
101100
# Letsencrypt (SSL/OCSP deploy)
102101
haproxy_letsencrypt_ssl_deploy_template: usr/local/bin/haproxy-letsencrypt-ssl-deploy.j2
103102
haproxy_letsencrypt_ssl_first_cert: "{{ inventory_hostname }}"

tests/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# test file
22
---
3-
- hosts: localhost
3+
- name: converge
4+
hosts: localhost
45
connection: local
56
become: true
67
pre_tasks:

tests/vagrant.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# test file
22
---
3-
- hosts: all
3+
- name: converge
4+
hosts: all
45
remote_user: vagrant
56
become: true
67
pre_tasks:

0 commit comments

Comments
 (0)