23 lines
558 B
Plaintext
Raw Normal View History

2015-07-29 23:55:31 -07:00
# keepalived configuration
#
# **** DO NOT EDIT THIS FILE ****
#
# This file is managed by Salt.
# Any changes will be overwritten.
2016-10-23 18:56:24 -04: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 -%}
2016-10-23 19:03:11 -04:00
{{ entry_type }}{{ '\n' }}
2016-10-23 18:56:24 -04:00
{%- endfor -%}
{%- endif -%}
{%- endmacro -%}
2016-10-23 19:03:11 -04:00
2016-10-23 19:09:34 -04:00
{{ config_entries(keepalived_final_values) }}