Files
ansible/run-local-script.yml
2023-11-20 20:16:03 +05:30

10 lines
167 B
YAML

---
- hosts: all
vars_prompt:
- name: path
prompt: "Enter path to script"
private: no
tasks:
- name: Execute script
script: "{{ path }}"