Files
proxmox-backup/templates/pxarexclude.j2
T
2026-05-15 11:28:07 +02:00

12 lines
232 B
Django/Jinja

/*
{% if backup_path_exclude is defined %}
{% for item in backup_path_exclude %}
{{ item }}
{% endfor %}
{% endif %}
{% if backup_path_include is defined %}
{% for item in backup_path_include %}
!{{ item }}
{% endfor %}
{% endif %}