2021-03-11 23:29:57 +01:00
|
|
|
---
|
|
|
|
- name: Pin borgmatic
|
|
|
|
template:
|
2021-03-14 14:17:36 +01:00
|
|
|
src: "{{ item.src }}"
|
|
|
|
dest: "{{ item.dest }}"
|
2021-03-11 23:36:27 +01:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: u=rw,g=r,o=
|
2021-03-11 23:29:57 +01:00
|
|
|
loop:
|
2021-03-14 14:17:36 +01:00
|
|
|
- src: apt/list.j2
|
|
|
|
dest: /etc/apt/sources.list.d/bullseye.list
|
|
|
|
- src: apt/preferences.j2
|
|
|
|
dest: /etc/apt/preferences.d/borgmatic-bullseye
|
2021-03-11 23:29:57 +01:00
|
|
|
when:
|
|
|
|
- ansible_distribution == "Debian"
|
|
|
|
- ansible_distribution_major_version | int <= 10
|
|
|
|
|
|
|
|
- name: Don't pin borgmatic if we are on bullseye
|
|
|
|
file:
|
|
|
|
path: "/etc/apt/{{ item }}"
|
|
|
|
state: absent
|
|
|
|
loop:
|
|
|
|
- sources.list.d/bullseye.list
|
|
|
|
- preferences.d/borgmatic-bullseye
|
|
|
|
when:
|
|
|
|
- ansible_distribution == "Debian"
|
|
|
|
- ansible_distribution_release == "bullseye"
|
|
|
|
|
|
|
|
- name: Install borgmatic
|
|
|
|
apt:
|
|
|
|
name: borgmatic
|
|
|
|
register: apt_result
|
|
|
|
retries: 3
|
|
|
|
until: apt_result is succeeded
|
|
|
|
|
2021-03-14 14:17:36 +01:00
|
|
|
- name: Create /etc/borgbackup
|
|
|
|
file:
|
|
|
|
path: /etc/borgbackup
|
|
|
|
state: directory
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: u=rwx,g=rx,o=
|
|
|
|
|
2021-03-11 23:29:57 +01:00
|
|
|
- name: Create SSH key
|
|
|
|
openssh_keypair:
|
2021-03-14 14:17:36 +01:00
|
|
|
path: "/etc/borgbackup/id_remote"
|
2021-03-14 16:11:18 +01:00
|
|
|
type: ed25519
|
|
|
|
regenerate: full_idempotence
|
2021-03-11 23:29:57 +01:00
|
|
|
owner: root
|
|
|
|
group: root
|
2021-03-14 18:22:52 +01:00
|
|
|
mode: u=rw,g=,o=
|
2021-03-11 23:29:57 +01:00
|
|
|
register: ssh_key
|
2021-03-14 16:11:18 +01:00
|
|
|
|
|
|
|
- name: Gather server facts
|
|
|
|
delegate_to: "{{ borg_server_host }}"
|
|
|
|
setup:
|
|
|
|
gather_subset:
|
|
|
|
- all
|
|
|
|
register: server_facts
|
|
|
|
|
|
|
|
- name: debug
|
|
|
|
debug:
|
|
|
|
var: "server_facts['ansible_facts'].ansible_ssh_host_key_ecdsa_public_keytype"
|
|
|
|
|
|
|
|
- name: Add server key to known hosts
|
|
|
|
known_hosts:
|
|
|
|
hash_host: true
|
|
|
|
host: "{{ borg_server_host }}"
|
|
|
|
key: "{{ borg_server_host }} {{ server_facts['ansible_facts']['ansible_ssh_host_key_' + item + '_public_keytype'] }} {{ server_facts['ansible_facts']['ansible_ssh_host_key_' + item + '_public'] }}"
|
|
|
|
loop:
|
|
|
|
- ecdsa
|
|
|
|
- ed25519
|
|
|
|
- rsa
|
2021-03-11 23:29:57 +01:00
|
|
|
|
|
|
|
- name: Add public key to remote
|
|
|
|
delegate_to: "{{ borg_server_host }}"
|
2021-03-14 13:18:30 +01:00
|
|
|
become: true
|
2021-03-11 23:29:57 +01:00
|
|
|
authorized_key:
|
|
|
|
exclusive: false
|
2021-03-14 13:18:30 +01:00
|
|
|
user: "{{ borg_server_user }}"
|
2021-03-11 23:29:57 +01:00
|
|
|
key: "{{ ssh_key.public_key }}"
|
2021-03-14 18:22:52 +01:00
|
|
|
key_options: command="borg serve --restrict-to-path {{ borg_host_dir }}",no-agent-forwarding,no-port-forwarding,no-pty,no-user-rc,no-X11-forwarding
|
2021-03-11 23:29:57 +01:00
|
|
|
vars:
|
2021-03-14 16:11:18 +01:00
|
|
|
borg_host_dir: "/borg/{{ ansible_fqdn }}"
|
2021-03-11 23:29:57 +01:00
|
|
|
|
2021-03-14 18:22:52 +01:00
|
|
|
- name: Create configuration direcotory for borgmatic
|
|
|
|
file:
|
|
|
|
state: directory
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: u=rw,g=r,o=
|
|
|
|
path: /etc/borgmatic
|
|
|
|
|
2021-03-11 23:29:57 +01:00
|
|
|
- name: Add borgmatic configuration file
|
|
|
|
become: true
|
|
|
|
template:
|
2021-03-14 16:11:18 +01:00
|
|
|
src: config.yaml.j2
|
2021-03-11 23:29:57 +01:00
|
|
|
dest: /etc/borgmatic/config.yaml
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: u=rw,g=r,o=
|
2021-03-14 18:22:52 +01:00
|
|
|
vars:
|
|
|
|
borg_host_dir: "/borg/{{ ansible_fqdn }}"
|
|
|
|
|
|
|
|
- name: Init repository
|
|
|
|
command: borgmatic init --encryption repokey
|
2021-03-11 23:29:57 +01:00
|
|
|
|
|
|
|
- name: Install timer and service for borgmatic
|
|
|
|
template:
|
|
|
|
src: "{{ item }}.j2"
|
|
|
|
dest: "/etc/systemd/system/{{ item }}"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: u=rw,g=r,o=
|
|
|
|
loop:
|
|
|
|
- borgmatic.timer
|
|
|
|
- borgmatic.service
|
|
|
|
notify:
|
|
|
|
- Run systemd daemon-reload
|
|
|
|
|
2021-03-14 18:22:52 +01:00
|
|
|
- name: Run systemd deamon-reload
|
|
|
|
systemd:
|
|
|
|
daemon_reload: true
|
|
|
|
|
2021-03-14 13:16:08 +01:00
|
|
|
- name: Start and enable borgmatic timer
|
|
|
|
systemd:
|
|
|
|
name: borgmatic.timer
|
|
|
|
state: started
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
- name: Start and enable borgmatic service
|
|
|
|
systemd:
|
|
|
|
name: borgmatic.service
|
|
|
|
state: started
|
|
|
|
enabled: true
|
|
|
|
|
2021-03-14 14:17:36 +01:00
|
|
|
- include_role:
|
|
|
|
name: update_motd
|
2021-03-11 23:29:57 +01:00
|
|
|
vars:
|
|
|
|
key: 10-borgmatic
|
|
|
|
message: Borgmatic (client) est installé dans /etc/borgmatic/config.yaml.
|
|
|
|
...
|