add new packages

- cockpit
- firewalld
- nfs client and server
- restic
- samba client and server
- targetcli
This commit is contained in:
Matthew Stobbs
2025-03-26 21:31:13 -06:00
parent 7aa1c3c12e
commit 9dc78f3b89
24 changed files with 292 additions and 43 deletions

17
tasks/pkgs/cockpit.yml Normal file
View File

@@ -0,0 +1,17 @@
# 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