mirror of https://github.com/ceph/ceph-ansible.git
tests: ensure ca-certificate is up to date
otherwise, it makes ssl verification fail because of expired certificates. Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/7124/head
parent
5e5473028b
commit
540ff7826e
|
@ -23,6 +23,14 @@
|
||||||
when:
|
when:
|
||||||
- not is_atomic
|
- not is_atomic
|
||||||
|
|
||||||
|
- name: ensure ca-certificate is latest version
|
||||||
|
package:
|
||||||
|
name: ca-certificates
|
||||||
|
state: latest
|
||||||
|
register: result
|
||||||
|
until: result is succeeded
|
||||||
|
when: not is_atomic | bool
|
||||||
|
|
||||||
- name: disable fastest mirror detection
|
- name: disable fastest mirror detection
|
||||||
ini_file:
|
ini_file:
|
||||||
path: /etc/yum/pluginconf.d/fastestmirror.conf
|
path: /etc/yum/pluginconf.d/fastestmirror.conf
|
||||||
|
|
Loading…
Reference in New Issue