mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Do a full yum update to make sure packages are latest version
For the deps setup of integration tests, as we sometimes see odd errors we can't reproduce, which may be related to slightly out of date package dependencies.
This commit is contained in:
parent
44e30e49dd
commit
1debc2da44
1 changed files with 6 additions and 2 deletions
|
@ -55,8 +55,12 @@
|
||||||
- python-virtualenv
|
- python-virtualenv
|
||||||
when: ansible_os_family == 'Debian'
|
when: ansible_os_family == 'Debian'
|
||||||
|
|
||||||
- name: update ca certificates
|
#- name: update ca certificates
|
||||||
yum: name=ca-certificates state=latest
|
# yum: name=ca-certificates state=latest
|
||||||
|
# when: ansible_os_family == 'RedHat'
|
||||||
|
|
||||||
|
- name: update all rpm packages
|
||||||
|
yum: name=* state=latest
|
||||||
when: ansible_os_family == 'RedHat'
|
when: ansible_os_family == 'RedHat'
|
||||||
|
|
||||||
- name: Install ubuntu 12.04 ansible dependencies
|
- name: Install ubuntu 12.04 ansible dependencies
|
||||||
|
|
Loading…
Reference in a new issue