Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit c10baec8 authored by Arthur BOUDREAULT's avatar Arthur BOUDREAULT Committed by Christophe Chaudier
Browse files

fix(ynh_backup): fix borgmatic version

Some arguments in borgmatic cli don't work anymore. They have been replaced in the latest commits of the Ansible role yet no new release have been published yet. Therefore, we are going to fix the borgmatic version to an older which works with Ansible role 0.9.3. https://github.com/borgbase/ansible-role-borgbackup
parent 854483d6
No related branches found
No related tags found
1 merge request!53Resolve "fix(ynh_backup): fix borgmatic version"
......@@ -49,6 +49,7 @@ ynh_backup:
```yml
ynh_borg_backup_scheduled: True
m3nu_ansible_role_borgbackup_version: "v0.9.3"
borgmatic_version: "1.6.5"
borg_source_directories: "{{ ynh_backup.directory }}"
borg_repository: "/data/backup/borg_repository"
borg_encryption_passphrase: "PLEASECHANGEME"
......@@ -64,6 +65,7 @@ ynh_ssh_borg_command: "ssh_command: ssh -p 7410 -o StrictHostKey
- `ynh_borg_backup_scheduled` : Active / désactive la fonctionnalité de sauvegarde avec BorgBackup.
- `m3nu_ansible_role_borgbackup_version` : Vous permet de spécifier la version du rôle Ansible Borg Backup que vous souhaitez utiliser. La version par défaut du rôle est v0.9.3 mais vous pouvez vérifier les versions du rôle [ici](https://github.com/borgbase/ansible-role-borgbackup).
- `borgmatic_version`: Vous permet de spécifier la version de Borgmatic que vous souhaitez utiliser. La version par défaut est la 1.6.5 car la dernière release du rôle n'est pas compatible avec les mises à jour plus récentes de Borgmatic (pour le moment).
- `ynh_borg_backup_remote_repo` : Active / désactive la fonctionnalité de sauvegarde sur un dépôt distant BorgBackup (tâches liées à la mise en place des clés SSH). Si vous activez cette fonctionnalité, vous aurez besoin d'utiliser les variables `borg_ssh_keys_src` et `borg_ssh_keys_dest`.
- `borg_source_directories` : Liste des dossiers source à sauvegarder. Par défaut, il s'agit du dossier qui contient les sauvegardes faites par YunoHost.
- `borg_repository` : Chemin complet vers le dépôt Borg. Possibilité de donner une liste de dépôts pour sauvegarder les données dans plusieurs endroits.
......
......@@ -49,6 +49,7 @@ ynh_backup:
```yml
ynh_borg_backup_scheduled: True
m3nu_ansible_role_borgbackup_version: "v0.9.3"
borgmatic_version: "1.6.5"
borg_source_directories: "{{ ynh_backup.directory }}"
borg_repository: "/data/backup/borg_repository"
borg_encryption_passphrase: "PLEASECHANGEME"
......@@ -64,6 +65,7 @@ ynh_ssh_borg_command: "ssh_command: ssh -p 7410 -o StrictHostKey
- `ynh_borg_backup_scheduled`: Enable / disable the backup feature with BorgBackup.
- `m3nu_ansible_role_borgbackup_version`: Allows you to specify which version of the Borg Backup Ansible role you want to use. The default version of the role is v0.9.3 but you can check the releases of the role [here](https://github.com/borgbase/ansible-role-borgbackup).
- `borgmatic_version`: Allows you to specify which version of Borgmatic you want to use. The default version is 1.6.5 because previous release of the role are not compatible with more recent updates of Borgmatic (at the moment).
- `ynh_borg_backup_remote_repo`: Enable / disable the backup functionality on a BorgBackup remote repository (tasks related to SSH keys setup). If you enable this feature, then you will need to use `borg_ssh_keys_src` and `borg_ssh_keys_dest` variables.
- `borg_source_directories`: List of source folders to back up. By default, this is the folder in which YunoHost local backups are located.
- `borg_repository`: Full path to the Borg repository. Possibility to give a list of repositories to save data in several places.
......
......@@ -25,6 +25,7 @@ ynh_backup:
# Variables for YunoHost BorgBackup
ynh_borg_backup_scheduled: False
m3nu_ansible_role_borgbackup_version: "v0.9.3"
borgmatic_version: "1.6.5"
borg_source_directories:
- "/home/yunohost.backup"
borg_repository: "/data/backup/borg_repository"
......
......@@ -31,13 +31,22 @@
- borg
- backup
- name: run BorgBackup role
- name: Run BorgBackup role
ansible.builtin.import_role:
name: m3nu.ansible_role_borgbackup
tags:
- backup
- borg
- name: Install specific version of Borgmatic
ansible.builtin.pip:
name: "borgmatic"
version: "{{ borgmatic_version }}"
virtualenv: /opt/borgmatic
tags:
- backup
- borg
- name: Create backup folder for BorgBackup repository
ansible.builtin.file:
path: "{{ borg_repository }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment