11 lines
232 B
Text
11 lines
232 B
Text
|
# {{ 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 %}
|