ansible-role-bareos/templates/server-profile.conf.j2

11 lines
232 B
Text
Raw Normal View History

2021-09-12 09:55:41 +00:00
# {{ 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 %}