11 lines
240 B
Django/Jinja
11 lines
240 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
{% 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 %}
|