Advertisement
Guest User

Untitled

a guest
Mar 31st, 2017
664
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. - name: "Clone tus-devdb-master"
  2. hosts: localhost
  3. connection: local
  4. gather_facts: False
  5.  
  6. tasks:
  7.  
  8. - name: Shutdown tus-devdb-master
  9. vmware_guest:
  10. hostname: "10.11.1.1"
  11. username: "administrator@vsphere.local"
  12. password: "xxxx!"
  13. name: "tus-devdb-master"
  14. state: shutdownguest
  15. validate_certs: False
  16. datacenter: "Watford"
  17.  
  18. - name: Clone vm
  19. vmware_guest:
  20. hostname: "10.11.1.1"
  21. username: "administrator@vsphere.local"
  22. password: "xxxxxx!"
  23. name: "tus-devdb-clone1"
  24. validate_certs: False
  25. datacenter: "Watford"
  26. cluster: "WatfordCluster"
  27. template: "tus-devdb-master"
  28. is_template: no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement