10 lines
232 B
Django/Jinja
10 lines
232 B
Django/Jinja
# {{ ansible_managed }}
|
|
{% for profile_name, acls in bareos_server_profiles.items() %}
|
|
|
|
Profile {
|
|
Name = "{{ profile_name }}"
|
|
{% for acl_name, acl in acls.items() %}
|
|
{{ acl_name }} ACL = "{{ acl }}"
|
|
{% endfor %}
|
|
}
|
|
{% endfor %}
|