- cockpit - firewalld - nfs client and server - restic - samba client and server - targetcli
18 lines
443 B
YAML
18 lines
443 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add cockpit
|
|
when:
|
|
- cockpit_configured is undefined
|
|
block:
|
|
- name: Load cockpit configuration
|
|
ansible.builtin.include_tasks:
|
|
file: config/cockpit.yml
|
|
|
|
- name: Append cockpit to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + cockpit.pkgs }}"
|
|
|
|
- name: Set cockpit_configured
|
|
ansible.builtin.set_fact:
|
|
cockpit_configured: true
|