aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/installation.yml
blob: 8ee0835d958b3cf25ac3590077a71f4356a8d446 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
- 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
      - cron
      - ssh
    state: present
    update_cache: true
  become: true
  when: ansible_facts['os_family'] == "Debian"