diff --git a/run-local-script.yml b/run-local-script.yml new file mode 100644 index 0000000..023fe22 --- /dev/null +++ b/run-local-script.yml @@ -0,0 +1,9 @@ +--- +- hosts: all + vars_prompt: + - name: path + prompt: "Enter path to script" + private: no + tasks: + - name: Execute script + script: "{{ path }}"