-
-
Save parberge/46359b9e2cc52d968c37be466ff032ae to your computer and use it in GitHub Desktop.
vars_prompt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: all | |
vars_prompt: | |
- name: "reboot_check" | |
prompt: "Should the host(s) really be rebooted?" | |
default: "no" | |
private: no | |
tasks: | |
- include: tasks/os/common/reboot.yml | |
when: reboot_check == "yes" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment