mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2025-06-02 01:17:19 +02:00
22 lines
710 B
YAML
22 lines
710 B
YAML
---
|
|
- name: Install borgbackup
|
|
block:
|
|
- name: Include OS-specific variables
|
|
include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
|
|
- "{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml"
|
|
- "{{ ansible_distribution }}.yml"
|
|
- "{{ ansible_os_family }}.yml"
|
|
- "{{ ansible_lsb.id }}.yml"
|
|
|
|
- name: Install general dependencies (openssh)
|
|
ansible.builtin.package:
|
|
name: "{{ borg_dep_packages }}"
|
|
state: present
|
|
|
|
- name: Install Borg and Borgmatic
|
|
ansible.builtin.include_tasks:
|
|
file: noauto_install_{{ borg_install_method }}.yml
|
|
...
|