Advertisement
Guest User

Untitled

a guest
Jun 18th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.42 KB | None | 0 0
  1. - name: install driver using pnputil
  2.   raw: Start-Process -FilePath C:\Windows\System32\pnputil.exe -ArgumentList '-i', '-a', '{{driver_filename.stdout_lines[0]}}' -NoNewWindow -Wait
  3.   ignore_errors: True
  4. - name: Wait for server to get connection
  5.   become: False
  6.   local_action:
  7.   module: wait_for
  8.      host: '{{inventory_hostname}}'
  9.      delay: 15
  10.      timeout: 45
  11. - name: ping the servers after the test ends
  12.   win_ping:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement