Skip to content

Commit f728d6b

Browse files
authored
Merge pull request #29 from jhohwieler/dev
Replace ansible.builtin.pause with ansible.builtin.wait_for -- merged because all reviewers approved
2 parents 2295d51 + 0a8c1bd commit f728d6b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

roles/sap_control/tasks/functions/restart_sapstartsrv.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
register: sap_start_sapstartsrv
3434

3535
- name: SAPstartsrv - Wait for 10 seconds for sapstartsrv to initialize
36-
ansible.builtin.pause:
37-
seconds: 10
36+
ansible.builtin.wait_for:
37+
timeout: 10

roles/sap_control/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@
9696
verbosity: 1
9797

9898
- name: pause for 10 Seconds
99-
ansible.builtin.pause:
100-
seconds: 10
99+
ansible.builtin.wait_for:
100+
timeout: 10
101101

102102
# Debugging stuff
103103
- name: Display parameters for runtime

0 commit comments

Comments
 (0)