mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ci_complete
(cherry picked from commit 3dcff121c4
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
2587a2588d
commit
f67708f91c
2 changed files with 8 additions and 8 deletions
|
@ -9,15 +9,15 @@
|
||||||
suffix: .django_manage
|
suffix: .django_manage
|
||||||
register: tmp_django_root
|
register: tmp_django_root
|
||||||
|
|
||||||
- name: Install virtualenv
|
- name: Install virtualenv on CentOS 8
|
||||||
package:
|
package:
|
||||||
name: virtualenv
|
name: virtualenv
|
||||||
state: present
|
state: present
|
||||||
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8'
|
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8'
|
||||||
|
|
||||||
- name: Install virtualenv
|
- name: Install virtualenv on Arch Linux
|
||||||
package:
|
pip:
|
||||||
name: python-virtualenv
|
name: virtualenv
|
||||||
state: present
|
state: present
|
||||||
when: ansible_os_family == 'Archlinux'
|
when: ansible_os_family == 'Archlinux'
|
||||||
|
|
||||||
|
|
|
@ -51,15 +51,15 @@
|
||||||
src: httpd_echo.py
|
src: httpd_echo.py
|
||||||
dest: "{{ process_file }}"
|
dest: "{{ process_file }}"
|
||||||
|
|
||||||
- name: Install virtualenv
|
- name: Install virtualenv on CentOS 8
|
||||||
package:
|
package:
|
||||||
name: virtualenv
|
name: virtualenv
|
||||||
state: present
|
state: present
|
||||||
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8'
|
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8'
|
||||||
|
|
||||||
- name: Install virtualenv
|
- name: Install virtualenv on Arch Linux
|
||||||
package:
|
pip:
|
||||||
name: python-virtualenv
|
name: virtualenv
|
||||||
state: present
|
state: present
|
||||||
when: ansible_os_family == 'Archlinux'
|
when: ansible_os_family == 'Archlinux'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue