Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ---
  2. - hosts: localhost
  3. vars_prompt:
  4. - name: "Choice"
  5. prompt: "Please Enter option 1 for installation 2 for uninstallation"
  6. private: no
  7. tasks:
  8. - import_tasks: install.yml
  9. when: Choice == "1"
  10.  
  11. - import_tasks: uninstall.yml
  12. when: Choice == "2"
  13.  
  14. ---
  15. vars_prompt:
  16. - name: "CallBack"
  17. prompt: "Please Enter the Callback IP"
  18. private: no
  19.  
  20. - name: "current directory"
  21. shell: /bin/installXXX {{CallBack}}
  22. register: basedir
Add Comment
Please, Sign In to add comment