first commit

This commit is contained in:
Ryan Cuda
2026-01-25 08:31:56 -07:00
commit 1234ef51c0
57 changed files with 2560 additions and 0 deletions

20
solutions/install.yml Normal file
View File

@@ -0,0 +1,20 @@
# playbook.yml
- name: Install Packages and Groups
hosts: all
become: true
tasks:
- name: Install packages on test group
ansible.builtin.dnf:
name:
- httpd
- php
state: latest
when: inventory_hostname in groups['test']
- name: Install RPM Development Tools group on dev group
ansible.builtin.dnf:
name: "@RPM Development Tools"
state: latest
when: inventory_hostname in groups['dev']