2020-02-25 15:08:29 +01:00
|
|
|
---
|
|
|
|
- name: Verify
|
|
|
|
hosts: all
|
|
|
|
tasks:
|
2022-02-20 10:56:14 +01:00
|
|
|
- name: Ensure Borgmatic is installed correctly
|
|
|
|
command: borgmatic --version
|
|
|
|
|
|
|
|
- name: Ensure Borg is installed correctly
|
|
|
|
command: borgmatic borg --version
|
|
|
|
|
|
|
|
- name: Ensure produced YAML is valid
|
|
|
|
command: |
|
|
|
|
yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" /etc/borgmatic/config.yaml
|