Commit d54ce17a authored by keshavprasadms's avatar keshavprasadms
Browse files

fix: install python3 packages on ubuntu 18 and above

Showing with 2 additions and 2 deletions
+2 -2
......@@ -9,12 +9,12 @@
apt:
state: present
name: ['python-pkg-resources', 'python2-pip']
when: ansible_distribution_version | float < 20
when: ansible_distribution_version | float < 18
- name: Installing other packages
apt:
state: present
name: ['python-pkg-resources', 'python3-pip', 'acl']
when: ansible_distribution_version | float > 20
when: ansible_distribution_version | float > 18
roles:
- bootstrap_any
tags:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment