Simplify package installs

Install python-devel at the same time we install the other rpms.

Change-Id: I0ca435ef5327e508fb64d17610d558c5a6715a33
Signed-off-by: Chuck Short <chucks@redhat.com>
This commit is contained in:
Chuck Short 2018-07-20 10:58:35 -04:00
parent c1fdde009c
commit d8b6eb481b
1 changed files with 1 additions and 6 deletions

View File

@ -7,12 +7,6 @@
fail: msg="**Unsupported Linux distribution! Please use CentOS 7+, RHEL 7+, or add support for your distribution**"
when: not supported_distro
- name: Install python development tools
yum:
name: python-devel
state: present
become: true
- name: Install dependencies for CentOS
yum:
name: "{{ item }}"
@ -26,6 +20,7 @@
- libsemanage-python
- openssl-devel
- policycoreutils-python
- python-devel
- name: Install pip
easy_install: