quick_test/ice_cream3.yml
2025-01-27 17:32:23 -05:00

18 lines
434 B
YAML

---
- name: Display ASCII Art
hosts: localhost
gather_facts: false
tasks:
- name: Print ASCII Art from Shell Script
ansible.builtin.command: scripts/ice_cream_cone.sh
register: ascii_art_output
- name: Debug ascii_art_output
ansible.builtin.debug:
var: ascii_art_output
- name: Display the ASCII Art Output
ansible.builtin.debug:
msg: "{{ ascii_art_output.stdout_lines }}"