feat: Compliant with bookworm

This commit is contained in:
pulsar89.5 2023-12-18 17:12:52 +01:00
parent 0fc8eb6a4b
commit 9cd1f67e32
4 changed files with 32 additions and 11 deletions

View File

@ -3,7 +3,7 @@
- name: Créer le dépôt
ansible.builtin.command:
cmd: borg init -e repokey-blake2 {{ item.path }}
cmd: borgmatic rcreate --encryption repokey-aes-ocb
become: true
loop: "{{ borgmatic_repositories }}"
register: borg_init

View File

@ -39,6 +39,7 @@
owner: root
group: root
mode: u=rw,g=,o=
validate: borgmatic config validate --config %s
become: true
notify: Créer le dépôt

View File

@ -1,23 +1,41 @@
---
# tasks file for borgmatic
- name: Installer python3-pip
- name: Installer les prérequis
ansible.builtin.apt:
name: python3-pip
state: latest
name:
- pipx
- build-essential
- libacl1-dev
- libacl1
- libb2-dev
- liblz4-dev
- libssl-dev
- libzstd-dev
- pkg-config
- python3
- python3-dev
- python3-pkgconfig
become: true
- name: Installer borgbackup
ansible.builtin.apt:
name: borgbackup
- name: Installer les paquets
community.general.pipx:
state: latest
default_release: "{{ borgmatic_distribution_release }}-backports"
name: "{{ item }}"
install_deps: true
include_injected: true
become: true
environment:
PIPX_HOME: /opt/pipx
PIPX_BIN_DIR: /usr/local/bin
loop:
- borgbackup
- borgmatic
- name: Installer le paquet avec pip
ansible.builtin.pip:
name: borgmatic
state: latest
- name: S'assurer que les paquets sont inclus dans le path
ansible.builtin.command:
cmd: pipx ensurepath
become: true
- name: Créer l'exemple de configuration

View File

@ -6,10 +6,12 @@ repositories:
path: {{ repository.path }}
{% endfor %}
{% if borgmatic_exclude_patterns | length > 0 %}
exclude_patterns:
{% for pattern in borgmatic_exclude_patterns %}
- {{ pattern }}
{% endfor %}
{% endif %}
source_directories:
{% for directory in borgmatic_source_directories %}