aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/installation.yml
blob: af379e634053b9fe2207be4b485565404b959c74 (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"