mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-11 04:10:17 +01:00
9 lines
338 B
YAML
9 lines
338 B
YAML
---
|
|
- name: Download EPEL Repo
|
|
get_url: url=http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm dest=/tmp/epel-release-6-8.noarch.rpm
|
|
|
|
- name: Install EPEL Repo
|
|
command: rpm -ivh /tmp/epel-release-6-8.noarch.rpm creates=/etc/yum.repos.d/epel.repo
|
|
|
|
- name: Install libselinux-python
|
|
yum: name=libselinux-python
|