10 lines
208 B
Text
10 lines
208 B
Text
|
# {{ ansible_managed }}
|
||
|
|
||
|
{% for key, value in autopostgresqlbackup_config.items() %}
|
||
|
{% if value is number %}
|
||
|
{{ key | upper }}={{ value }}
|
||
|
{% else %}
|
||
|
{{ key | upper }}="{{ value }}"
|
||
|
{% endif %}
|
||
|
{% endfor %}
|