quick_test/join.yml

19 lines
375 B
YAML

---
- 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(' ') }}"