13 lines
456 B
Django/Jinja
13 lines
456 B
Django/Jinja
#!/bin/sh
|
|
|
|
## Variable
|
|
export BORG_PASSPHRASE="{{ borg_pass }}"
|
|
|
|
## lancement de la sauvegarde
|
|
borg create --exclude-caches {% for f in borg_backup_excluded_path %}-e {{ f }} {% endfor %} -s backup@{{ hostvars[groups['borg_server'][0]]['ansible_fqdn'] }}:home::{now:%Y-%m-%d} {% for f in borg_backup_path %}{{ f }} {% endfor %}
|
|
|
|
|
|
## récupération de l'espace
|
|
borg prune -d 7 -w 4 -m 3 backup@{{ hostvars[groups['borg_server'][0]]['ansible_fqdn'] }}:home
|
|
|