Skip to content

Commit

Permalink
Fix conf-ansible to force install pyOpenSSL
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Nov 3, 2017
1 parent 6f858db commit ed97ced
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contextualization/conf-ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@
file: src=/usr/bin/python2.6 dest=/usr/bin/python_ansible state=link
when: ansible_os_family == "RedHat" and ansible_distribution_major_version|int < 6

- name: Upgrade pip
pip: name=pip extra_args="-I" state=latest

- name: Upgrade pyOpenSSL with Pip
pip: name=pyOpenSSL extra_args="-I" state=latest

- name: Upgrade setuptools with Pip
pip: name=setuptools extra_args="-I" state=latest
when: ansible_os_family == "Suse" or (ansible_os_family == "RedHat" and ansible_distribution_major_version|int < 7)
Expand Down

0 comments on commit ed97ced

Please sign in to comment.