1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

introduce strict_install

This commit is contained in:
Jerry Vonau 2017-07-06 08:38:24 -05:00 committed by georgejhunt
parent 43bf8174c0
commit 7ca0970b5a
4 changed files with 7 additions and 6 deletions

View file

@ -26,13 +26,11 @@
- name: use pip to uninstall setuptools for centos
command: pip uninstall --yes setuptools
when: ansible_distribution == "CentOS"
when: ansible_distribution == "CentOS" and not strict_install
- name: Get an unbroken version of setuptools for centos
command: pip install setuptools==28.8.0
when: ansible_distribution == "CentOS"
when: ansible_distribution == "CentOS" and not strict_install
- name: Install kalite with pip
pip: name=ka-lite version={{ kalite_version }}