18 lines
434 B
YAML
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 }}"
|