Skip to content

Commit

Permalink
Merge pull request #3329 from keshavprasadms/release-4.9.0
Browse files Browse the repository at this point in the history
fix: install python3 packages on ubuntu 18 and above
  • Loading branch information
santhosh-tg authored May 12, 2022
2 parents 9771371 + d54ce17 commit f6ead71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f6ead71

Please sign in to comment.