Always retry alternatives.install state

This commit is contained in:
N 2019-04-15 00:26:32 +01:00
parent 58c36c57cc
commit 080bff7b3d
No known key found for this signature in database
GPG key ID: 55A292EAB4E54067
3 changed files with 9 additions and 0 deletions

View file

@ -39,6 +39,9 @@ postgresql-{{ bin }}-altinstall:
- onlyif: test -f {{ path }} - onlyif: test -f {{ path }}
- require: - require:
- pkg: postgresql-client-libs - pkg: postgresql-client-libs
- retry:
attempts: 2
until: True
{%- endfor %} {%- endfor %}
{%- endif %} {%- endif %}

View file

@ -27,6 +27,9 @@ postgresql-{{ bin }}-altinstall:
- onlyif: alternatives --display {{ bin }} - onlyif: alternatives --display {{ bin }}
{% else %} {% else %}
- onlyif: test -f {{ path }} - onlyif: test -f {{ path }}
- retry:
attempts: 2
until: True
{% endif %} {% endif %}
{%- endfor %} {%- endfor %}

View file

@ -54,6 +54,9 @@ postgresql-{{ bin }}-altinstall:
- pkg: postgresql-server - pkg: postgresql-server
- require_in: - require_in:
- cmd: postgresql-cluster-prepared - cmd: postgresql-cluster-prepared
- retry:
attempts: 2
until: True
{%- endfor %} {%- endfor %}
{%- endif %} {%- endif %}