This commit is contained in:
2025-12-23 19:18:39 -07:00
commit 5282bdcf6d
20 changed files with 430 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
- name: Set the hostname per inventory
hostname:
name: "{{ inventory_hostname }}"
use: systemd
- name: Install firewalld
package:
name: firewalld
state: latest
- name: Start and enable firewalld
service:
name: firewalld
state: started
enabled: true