More new stuff

This commit is contained in:
2025-01-27 17:32:23 -05:00
parent 7a93d8d72a
commit 6eedbd74e0
13 changed files with 231 additions and 4 deletions

15
vte.yml Normal file
View File

@ -0,0 +1,15 @@
---
- name: Something
hosts: temp
become: false
gather_facts: false
vars:
pkg_list:
- https://dlcdn.apache.org//directory/apacheds/dist/2.0.0.AM27/apacheds-2.0.0.AM27-x86_64.rpm
tasks:
- name: Install packages from package list
ansible.builtin.yum:
name: "{{ pkg_list }}"
state: present