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

Commit 29937e4

Browse files
committed
Issue #2065: Fix python pycurl package for CentOS 8.
1 parent f8899c1 commit 29937e4

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

provisioning/tasks/init-RedHat.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
---
22
- name: Install required dependencies.
3-
yum: "name={{ item }} state=present"
4-
with_items:
5-
- curl
6-
- python-pycurl
7-
- unzip
8-
- make
9-
- gcc
3+
yum:
4+
name:
5+
- curl
6+
- python3-pycurl
7+
- unzip
8+
- make
9+
- gcc
10+
state: present
1011

1112
- name: Enable remi repo for MySQL.
12-
set_fact: mysql_enablerepo="remi"
13+
set_fact:
14+
mysql_enablerepo: remi
1315
when: mysql_enablerepo is not defined or mysql_enablerepo == ""
1416

1517
- name: Define php_xhprof_html_dir.
1618
set_fact:
17-
php_xhprof_html_dir: "/usr/share/pear/xhprof_html"
19+
php_xhprof_html_dir: /usr/share/pear/xhprof_html
1820
when: php_xhprof_html_dir is not defined
1921
tags: ['webserver']

0 commit comments

Comments
 (0)