10 lines
167 B
YAML
10 lines
167 B
YAML
---
|
|
- hosts: all
|
|
vars_prompt:
|
|
- name: path
|
|
prompt: "Enter path to script"
|
|
private: no
|
|
tasks:
|
|
- name: Execute script
|
|
script: "{{ path }}"
|