Retries packages installation
This commit is contained in:
parent
d4c298ca42
commit
19fc82668b
|
@ -4,6 +4,7 @@
|
||||||
### Fix
|
### Fix
|
||||||
* Use to_nice_json to manage packages list.
|
* Use to_nice_json to manage packages list.
|
||||||
* Set empty dependencies line to fix Galaxy warning.
|
* Set empty dependencies line to fix Galaxy warning.
|
||||||
|
* Retries packages installation.
|
||||||
|
|
||||||
## v1.0.0
|
## v1.0.0
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
install_recommends: False
|
install_recommends: False
|
||||||
with_flattened:
|
with_flattened:
|
||||||
- '{{ deb_sec__required_packages | to_nice_json }}'
|
- '{{ deb_sec__required_packages | to_nice_json }}'
|
||||||
|
register: pkg_result
|
||||||
|
until: pkg_result is success
|
||||||
|
|
||||||
# Debsecan [[[1
|
# Debsecan [[[1
|
||||||
# Configuration [[[
|
# Configuration [[[
|
||||||
- name: Debsecan configuration
|
- name: Debsecan configuration
|
||||||
|
|
Loading…
Reference in New Issue