mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-09 14:50:02 -07:00
certifi dropped Python 2 support (#4702)
* certifi dropped Python 2 support. * Apparently the consul tests didn't use the constraints.
This commit is contained in:
parent
db1010a417
commit
8421af1ea3
3 changed files with 4 additions and 0 deletions
|
@ -3,3 +3,4 @@ dependencies:
|
|||
- setup_pkg_mgr
|
||||
- setup_openssl
|
||||
- setup_remote_tmp_dir
|
||||
- setup_remote_constraints
|
||||
|
|
|
@ -12,12 +12,14 @@
|
|||
- name: Install requests<2.20 (CentOS/RHEL 6)
|
||||
pip:
|
||||
name: requests<2.20
|
||||
extra_args: "-c {{ remote_constraints }}"
|
||||
register: result
|
||||
until: result is success
|
||||
when: ansible_distribution_file_variety|default() == 'RedHat' and ansible_distribution_major_version is version('6', '<=')
|
||||
- name: Install python-consul
|
||||
pip:
|
||||
name: python-consul
|
||||
extra_args: "-c {{ remote_constraints }}"
|
||||
register: result
|
||||
until: result is success
|
||||
- name: Generate privatekey
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue