2024-03-08 13:34:29 -05:00

21 lines
474 B
YAML

---
- name: Say hi playbook
hosts: all
become: true
gather_facts: true
strategy: free
tasks:
- name: Do we have bigboot_size
ansible.builtin.debug:
msg: "bigboot_size == {{ bigboot_size }}"
- name: Do we have bigboot_adjacent_lvm_device
ansible.builtin.debug:
msg: "bigboot_adjacent_lvm_device == {{ bigboot_adjacent_lvm_device }}"
- name: Import say-hi playbook
ansible.builtin.include_role:
name: say_hi