keepalived-formula/keepalived/templates/keepalived.jinja

38 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-07-30 08:55:31 +02:00
# keepalived configuration
#
# **** DO NOT EDIT THIS FILE ****
#
# This file is managed by Salt.
# Any changes will be overwritten.
2016-10-24 01:17:58 +02:00
{{ '\n' }}
2016-10-24 02:50:06 +02:00
{%- import_yaml 'keepalived/defaults.yaml' as keepalived_defaults -%}
2016-10-24 00:56:24 +02:00
{%- set keepalived_final_values = salt.pillar.get(
2016-10-24 01:29:26 +02:00
'keepalived',
2016-10-24 00:56:24 +02:00
default=keepalived_defaults,
2016-10-24 02:50:06 +02:00
merge=True) -%}
2016-10-24 00:56:24 +02:00
2016-10-24 01:44:51 +02:00
{%- macro config_entries(data, indents) -%}
2016-10-24 02:02:12 +02:00
{%- if data is string or data is number -%}
2016-10-24 02:53:01 +02:00
{{ data|string|indent(indents, True) }}{{ '\n' }}
2016-10-24 02:11:55 +02:00
{%- else -%}
{%- if indents != 0 -%}
2016-10-24 03:03:24 +02:00
{{- "{\n" -}}
{%- endif -%}
2016-10-24 02:11:55 +02:00
{%- if data is mapping -%}
{%- for entry in data|dictsort -%}
2016-10-24 03:09:30 +02:00
{{ entry[0]|indent(indents, True) }}
2016-10-24 02:02:12 +02:00
{{- config_entries(entry[1], indents + 2) -}}
2016-10-24 02:11:55 +02:00
{%- endfor -%}
2016-10-24 02:37:27 +02:00
{%- else -%}
{%- for entry in data -%}
2016-10-24 03:03:24 +02:00
{{- config_entries(entry, indents) -}}
2016-10-24 02:37:27 +02:00
{%- endfor -%}
2016-10-24 02:11:55 +02:00
{%- endif -%}
{%- if indents != 0 -%}
{{ '}'|indent(indents - 2, True) }}{{ '\n' }}
{%- endif -%}
2016-10-24 00:56:24 +02:00
{%- endif -%}
{%- endmacro -%}
2016-10-24 01:03:11 +02:00
2016-10-24 01:44:51 +02:00
{{ config_entries(keepalived_final_values, 0) }}