Files
product-demos/linux/run_script.yml
willtome aa0938b7ae fixes
2022-02-11 10:38:46 -06:00

15 lines
301 B
YAML

---
- name: Run Shell Script
hosts: "{{ HOSTS }}"
become: yes
gather_facts: no
vars:
shell_script: undef
tasks:
- name: Run Shell Script
shell: "{{ shell_script }}"
- debug:
msg: You should really consider converting this script to a playbook!
run_once: yes