fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/provisioning/roles/shelfzilla/tasks/pip_dependencies.yml

14 lines
307 B
YAML

- name: Install Python27 packages
yum: pkg={{item}} state=installed
sudo: yes
with_items:
- python27
- python27-tools
- python27-devel
- python27-libs
- python27-setuptools
- easy_install: name=pip executable=/usr/bin/easy_install-2.7
sudo: yes