mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-09-29 21:13:23 -07:00
CI: Remove 'warn:' that's removed in ansible-core 2.14 (#4434)
* Remove 'warn:' that's removed in ansible-core 2.14. * Install virtualenv when needed.
This commit is contained in:
parent
1b357bade7
commit
24ca69aa05
6 changed files with 12 additions and 11 deletions
|
@ -43,6 +43,18 @@
|
|||
src: httpd_echo.py
|
||||
dest: "{{ process_file }}"
|
||||
|
||||
- name: Install virtualenv
|
||||
package:
|
||||
name: virtualenv
|
||||
state: present
|
||||
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8'
|
||||
|
||||
- name: Install virtualenv
|
||||
package:
|
||||
name: python-virtualenv
|
||||
state: present
|
||||
when: ansible_os_family == 'Archlinux'
|
||||
|
||||
- name: install dependencies
|
||||
pip:
|
||||
name: "{{ item }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue