We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47426ec commit 01c081aCopy full SHA for 01c081a
playbooks/roles/packages/tasks/el-7.yml
@@ -5,10 +5,17 @@
5
- pyOpenSSL
6
- python2-cryptography
7
state: latest
8
-
+ register: packages_output
9
+ retries: 5
10
+ delay: 10
11
+ until: packages_output is not failed
12
13
- name: Make sure python3-oci-cli is installed
14
yum:
15
name:
16
- python3-oci-cli
17
18
+ register: oci_cli_output
19
20
21
+ until: oci_cli_output is not failed
0 commit comments