add borg_server role

This commit is contained in:
Sergey Malyuk
2025-12-18 16:11:08 +03:00
parent 0917bc596c
commit 277900b6ba
10 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
---
- name: Verify
hosts: all
gather_facts: false
any_errors_fatal: true
tasks:
- name: "Check if `borg` is available from PATH" # noqa: no-changed-when
register: br_test__borg_version
ansible.builtin.command:
cmd: "borg --version"