13 lines
218 B
Django/Jinja
Executable file
13 lines
218 B
Django/Jinja
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
{% if backup_executor %}
|
|
backup-standalone
|
|
{% endif %}
|
|
{% if backups.mode in ['hypervisor-restic'] %}
|
|
backup-all-vms
|
|
{% endif %}
|
|
{% if backup_executor %}
|
|
backup-retention
|
|
{% endif %}
|
|
|