- cockpit - firewalld - nfs client and server - restic - samba client and server - targetcli
14 lines
326 B
YAML
14 lines
326 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add restic
|
|
when:
|
|
- restic_configured is undefined
|
|
block:
|
|
- name: Append restic to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + ['restic'] }}"
|
|
|
|
- name: Set restic_configured
|
|
ansible.builtin.set_fact:
|
|
restic_configured: true
|