add better name to pip tasks

This commit is contained in:
Andreas Zweili 2021-11-11 22:15:39 +01:00
parent 3066f30dba
commit bc8b1933ba
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@
line: "{{ common_deploy_user_name }} ALL=(ALL) NOPASSWD: ALL"
state: "present"
- name: "Download Pip"
- name: "Download the newest Pip"
get_url:
url: "https://bootstrap.pypa.io/get-pip.py"
dest: "/tmp/get-pip.py"
@ -63,7 +63,7 @@
- ansible_facts['distribution_major_version'] | int >= 20
- ansible_facts['distribution'] == "Ubuntu"
- name: "Download Pip"
- name: "Download Pip for Python 3.5"
get_url:
url: "https://bootstrap.pypa.io/pip/3.5/get-pip.py"
dest: "/tmp/get-pip.py"