Skip to content
Snippets Groups Projects
Commit bae23275 authored by Michal Urban's avatar Michal Urban
Browse files

Merge branch 'ping_fix' into 'master'

Retries for network availability & Windows license activation

Closes #29

See merge request muni-kypo-crp/backend-python/ansible-networking-stage/kypo-ansible-stage-one!30
parents fa3fa9ee db417c3e
Branches
Tags v1.0.8
No related merge requests found
......@@ -185,6 +185,10 @@
tasks:
- command: 'ping -c 3 {{ hostvars["man"]["default_gateway_interface_ip"] }}'
changed_when: False
register: ping_result
until: ping_result is not failed
retries: 18
delay: 10
- name: User access on MAN and UAN
hosts:
......@@ -281,7 +285,7 @@
win_command: 'cscript C:\Windows\System32\slmgr.vbs //B /ato'
register: result
until: result is not failed
retries: 3
retries: 10
delay: 10
- name: ensure existence of SSH directory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment