Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Issue #2065: Fix python pycurl package for CentOS 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Jul 6, 2020
1 parent f8899c1 commit 29937e4
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions provisioning/tasks/init-RedHat.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
---
- name: Install required dependencies.
yum: "name={{ item }} state=present"
with_items:
- curl
- python-pycurl
- unzip
- make
- gcc
yum:
name:
- curl
- python3-pycurl
- unzip
- make
- gcc
state: present

- name: Enable remi repo for MySQL.
set_fact: mysql_enablerepo="remi"
set_fact:
mysql_enablerepo: remi
when: mysql_enablerepo is not defined or mysql_enablerepo == ""

- name: Define php_xhprof_html_dir.
set_fact:
php_xhprof_html_dir: "/usr/share/pear/xhprof_html"
php_xhprof_html_dir: /usr/share/pear/xhprof_html
when: php_xhprof_html_dir is not defined
tags: ['webserver']

0 comments on commit 29937e4

Please sign in to comment.