Fix firewalld configuration for monitoring hosts

There was a stray double quote in the firewalld config for monitoring
hosts, resulting in the following error when firewalld is enabled:

  ValueError: No closing quotation

Closes-Bug: 2019867
Change-Id: I201faf14da5d143670250052ab15fc285f24868c
This commit is contained in:
Mark Goddard 2023-05-16 14:55:52 +01:00 committed by Bartosz Bezak
parent 0258141d37
commit b7e95c83d3

View File

@ -19,7 +19,7 @@ firewalld_zones: >
firewalld_default_zone: >-
{{ controller_firewalld_default_zone
if inventory_hostname in groups['controllers'] else
monitoring_firewalld_default_zone }}"
monitoring_firewalld_default_zone }}
# A list of firewall rules to apply. Each item is a dict containing arguments
# to pass to the firewalld module. Arguments are omitted if not provided, with
@ -30,4 +30,4 @@ firewalld_default_zone: >-
firewalld_rules: >
{{ controller_firewalld_rules
if inventory_hostname in groups['controllers'] else
monitoring_firewalld_rules }}"
monitoring_firewalld_rules }}