We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbfd1b1 commit c42b479Copy full SHA for c42b479
meta/main.yml
@@ -4,7 +4,7 @@ galaxy_info:
4
description: Deploy Django on Plesk
5
company: 9dev
6
license: BSD
7
- min_ansible_version: 2.1
+ min_ansible_version: 2.6
8
platforms:
9
- name: Ubuntu
10
versions:
@@ -23,6 +23,10 @@ galaxy_info:
23
- xenial
24
- yakkety
25
- zesty
26
+ - artful
27
+ - bionic
28
+ - cosmic
29
+ - cuttlefish
30
galaxy_tags:
31
- system
32
- development
tasks/main.yml
@@ -52,13 +52,9 @@
52
53
- name: Upgrade pip
54
pip:
55
- name: "{{ item }}"
+ name: ['pip', 'setuptools', 'wheel']
56
state: latest
57
virtualenv: "{{ virtualenv_dir }}/{{ project }}"
58
- with_items:
59
- - pip
60
- - setuptools
61
- - wheel
62
63
- name: Install pip requirements
64
0 commit comments