keepalived-formula/keepalived/templates/keepalived.jinja

21 lines
501 B
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 00:56:24 +02:00
{%- import_yaml 'keepalived/defaults.yaml' as keepalived_defaults %}
{%- set keepalived_final_values = salt.pillar.get(
'keepalived',
default=keepalived_defaults,
merge=True) %}
{%- macro config_entries(data) -%}
{%- if data is mapping -%}
{%- for entry_type in data|dictsort -%}
{{ entry_type }}
{%- endfor -%}
{%- endif -%}
{%- endmacro -%}