Advertisement
Guest User

ansible pause module skipped

a guest
May 25th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. - name: Enable GPU monitoring
  2. when: primarymaster and gpu
  3. tags:
  4. - install
  5. - installdli
  6. become: yes
  7. become_user: "{{ _clusteradmin }}"
  8. shell: |
  9. source "{{ _prefix }}/profile.platform"
  10. gpuconfig.sh enable --quiet -u "{{ _EGOadminuser }}" -x "{{ _EGOadminpassword }}"
  11. args:
  12. executable: /bin/bash
  13.  
  14. - pause:
  15. minutes: 1
  16.  
  17. - name: Create directory for DLI SIG
  18. when: primarymaster and gpu
  19. tags:
  20. - install
  21. - installdli
  22. file:
  23. path: "{{ _sigdeploydir }}"
  24. state: directory
  25. mode: 0777
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement