Files
2025-12-18 16:37:50 +03:00

12 lines
264 B
YAML

---
- 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: borg_server_version
ansible.builtin.command:
cmd: "borg --version"