Projet

Général

Profil

0001-move-common-python-packages-installation-to-roles-ba.patch

Emmanuel Cazenave, 26 novembre 2019 18:59

Télécharger (3,68 ko)

Voir les différences:

Subject: [PATCH 1/2] move common python packages installation to roles/base
 (#36894)

 roles/authentic/tasks/main.yml  |  6 ------
 roles/base/tasks/main.yml       | 29 +++++++++++++++++++++++++++++
 roles/combo/tasks/main.yml      |  6 ------
 roles/hobo/tasks/main.yml       | 19 -------------------
 roles/passerelle/tasks/main.yml |  7 -------
 5 files changed, 29 insertions(+), 38 deletions(-)
roles/authentic/tasks/main.yml
5 5
    repo: "authentic"
6 6
    repo_dir: "{{ src_dir }}/authentic"
7 7

  
8
# FIXME: change authentic settings instead ?
9
- name: install python-memcached
10
  pip:
11
    name: python-memcached
12
    virtualenv: "{{venv}}"
13

  
14 8
- name: source install authentic2-auth-fc
15 9
  import_tasks: install_source.yml
16 10
  vars:
roles/base/tasks/main.yml
94 94
    repo: "eopayment"
95 95
    repo_dir: "{{ src_dir }}/eopayment"
96 96

  
97
- name: source install django-tenant-schemas
98
  import_tasks: install_source.yml
99
  vars:
100
    repo: "debian/django-tenant-schemas"
101
    repo_dir: "{{ src_dir }}/django-tenant-schemas"
102

  
103
- name: source install django-mellon
104
  import_tasks: install_source.yml
105
  vars:
106
    repo: "django-mellon"
107
    repo_dir: "{{ src_dir }}/django-mellon"
108

  
109
- name: source install gadjo
110
  import_tasks: install_source.yml
111
  vars:
112
    repo: "gadjo"
113
    repo_dir: "{{ src_dir }}/gadjo"
114

  
115
- name: install python-memcached
116
  pip:
117
    name: python-memcached
118
    virtualenv: "{{venv}}"
119

  
120
- name: source install django-ckeditor
121
  import_tasks: install_source.yml
122
  vars:
123
    repo: "debian/django-ckeditor"
124
    repo_dir: "{{ src_dir }}/django-ckeditor"
125

  
97 126
- name: install theme
98 127
  import_tasks: tasks/install_theme.yml
99 128
  vars:
roles/combo/tasks/main.yml
1
- name: source install django-ckeditor
2
  import_tasks: install_source.yml
3
  vars:
4
    repo: "debian/django-ckeditor"
5
    repo_dir: "{{ src_dir }}/django-ckeditor"
6

  
7 1
- name: source install combo
8 2
  import_tasks: install_source.yml
9 3
  vars:
roles/hobo/tasks/main.yml
1

  
2
- name: source install django-mellon
3
  import_tasks: install_source.yml
4
  vars:
5
    repo: "django-mellon"
6
    repo_dir: "{{ src_dir }}/django-mellon"
7

  
8
- name: source install gadjo
9
  import_tasks: install_source.yml
10
  vars:
11
    repo: "gadjo"
12
    repo_dir: "{{ src_dir }}/gadjo"
13

  
14
- name: source install django-tenant-schemas
15
  import_tasks: install_source.yml
16
  vars:
17
    repo: "debian/django-tenant-schemas"
18
    repo_dir: "{{ src_dir }}/django-tenant-schemas"
19

  
20 1
- name: source install hobo
21 2
  import_tasks: install_source.yml
22 3
  vars:
roles/passerelle/tasks/main.yml
1

  
2
- name: source install django-tenant-schemas
3
  import_tasks: install_source.yml
4
  vars:
5
    repo: "debian/django-tenant-schemas"
6
    repo_dir: "{{ src_dir }}/django-tenant-schemas"
7

  
8 1
- name: source install passerelle
9 2
  import_tasks: install_source.yml
10 3
  vars:
11
-