feat: Introduce an Ansible common role for base system configuration, including packages, users, and Netplan networking, alongside Semaphore playbooks for system bootstrapping and Proxmox management.

This commit is contained in:
Nikholas Pcenicni
2026-01-19 03:47:55 -05:00
parent 7be62c7a45
commit fcb2119859
11 changed files with 232 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
- name: Update apt cache
apt:
update_cache: yes
cache_valid_time: 3600
when: ansible_os_family == "Debian"
- name: Install common packages
apt:
name: "{{ common_packages }}"
state: present
when: ansible_os_family == "Debian"