aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/installation.yml
blob: 7e64ff3b36e4844508af3f6bf7fa40a16eb1bb39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: Install Debian Server dependencies
  ansible.builtin.apt:
    name:
      - borgbackup
    state: present
    update_cache: true
  become: true
  when: ansible_facts['os_family'] == "Debian"
  delegate_to: '{{ borg_server_host }}'

- name: Install Debian Client dependencies
  ansible.builtin.apt:
    name:
      - borgbackup
      - ssh
    state: present
    update_cache: true
  become: true
  when: ansible_facts['os_family'] == "Debian"