Cleaner output of prune.sh generated template

This commit is contained in:
Dieter Verhelst 2018-07-03 07:27:50 +02:00
parent e5c82933d9
commit e2039b742d
1 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,4 @@
#jinja2:lstrip_blocks: True
#!/bin/bash
# This script is intended to run on a trusted management station to purge borg repo's in
@ -5,15 +6,18 @@
# Don't put it on the backup server, it contains all borg secrets!
{% for h in groups['all'] %}
{% if hostvars[h].borgbackup_required | default(True) %}
# Host: {{ h }}
{% if hostvars[h].borgbackup_required | default(True) -%}
# Host: {{ h }}
export BORG_PASSPHRASE={{ hostvars[h].borgbackup_passphrase }}
{% if hostvars[h].borgbackup_management_station is defined and inventory_hostname == hostvars[h].borgbackup_management_station %}
{% for b in hostvars[h].borgbackup_servers %}
{% if hostvars[h].borgbackup_management_station is defined and inventory_hostname == hostvars[h].borgbackup_management_station %}
export BORG_PASSPHRASE={{ hostvars[h].borgbackup_passphrase }}
# {{ b.fqdn }}
REPOSITORY={% if b.type == 'hetzner' %}ssh://{% endif %}{{ b.user }}@{{ b.fqdn }}:{% if b.type == 'hetzner' %}23/./{% endif %}{{ b.home }}{{ b.pool }}/{{ h }}
/usr/local/bin/borg prune -v $REPOSITORY {{ b.options }} -H {{ hostvars[h].borgbackup_retention.hourly }} -d {{ hostvars[h].borgbackup_retention.daily }} -w {{ hostvars[h].borgbackup_retention.weekly }} -m {{ hostvars[h].borgbackup_retention.monthly }} -y {{ hostvars[h].borgbackup_retention.yearly }}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}