Initial project commit

This commit is contained in:
2024-12-16 19:59:57 -05:00
commit fa1b5cce00
3409 changed files with 460909 additions and 0 deletions

18
join.yml Normal file
View File

@ -0,0 +1,18 @@
---
- name: Something
hosts: localhost
connection: local
become: false
vars:
disabled_modules:
- scsi_debug
- falcon_lsm_serviceable
- falcon_nf_netcontains
- falcon_kal
- falcon_lsm_pinned_16407
tasks:
- name: Print the list separated by spaces
ansible.builtin.debug:
msg: "{{ disabled_modules | join(' ') }}"