add nodes var

This commit is contained in:
2024-09-18 19:39:31 +00:00
parent 8383c8c95b
commit a2b26eba26

View File

@@ -1,9 +1,13 @@
---
- hosts: all
- hosts: "{{ nodes }}"
become: true
vars_prompt:
- name: path
prompt: "Enter path to script"
private: no
- name: nodes
prompt: "Enter hosts to run script on"
private: no
tasks:
- name: Execute script
script: "{{ path }}"