Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ---
  2. - name: Setup map drive M
  3. win_mapped_drive:
  4. letter: M
  5. path: \\xxx.xxx.xxx\Files
  6. username: '{{ JenkinsCIAccountLogin }}'
  7. password: '{{ JenkinsCIAccountPassword }}'
  8. state: present
  9.  
  10. - name: Setup map drive S
  11. win_mapped_drive:
  12. letter: S
  13. path: \\xxx.xxx.xxx\Software
  14. username: '{{ JenkinsCIAccountLogin }}'
  15. password: '{{ JenkinsCIAccountPassword }}'
  16. state: present
  17.  
  18. - name: Setup map drive T
  19. win_mapped_drive:
  20. letter: T
  21. path: \\xxx.xxx.xxx\Temporary
  22. username: '{{ JenkinsCIAccountLogin }}'
  23. password: '{{ JenkinsCIAccountPassword }}'
  24. state: present
  25. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement