More new stuff

This commit is contained in:
2025-01-27 17:32:23 -05:00
parent 7a93d8d72a
commit 6eedbd74e0
13 changed files with 231 additions and 4 deletions

17
ice_cream3.yml Normal file
View File

@ -0,0 +1,17 @@
---
- 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 }}"