From e090a061a93b267db6cb92ab27b15941bcea009d Mon Sep 17 00:00:00 2001 From: Tube <7u83@mail.ru> Date: Wed, 25 Oct 2023 09:35:18 +0200 Subject: [PATCH] Works on CentOS now --- php.cf | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/php.cf b/php.cf index f0b5d83..925b5d7 100644 --- a/php.cf +++ b/php.cf @@ -7,7 +7,10 @@ bundle agent install_php classes: "php_install_repo" expression => not(fileexists("/etc/apt/sources.list.d/php.list")); vars: - "version" string => "$(php.version)"; + "version" string => "$(php.version)"; + centos:: + "version" string => ""; + freebsd:: @@ -60,6 +63,23 @@ vars: "php-gd", }; + centos:: + "pkgs" slist => { + "php$(version)-cli", + "php$(version)-common", + "php$(version)-pecl-zip", + "php$(version)-pgsql", + "php$(version)-mysqlnd", + "php$(version)-xml", + "php$(version)-gd", + "php$(version)-mbstring", + "php$(version)-intl", + "php$(version)-pecl-imagick", + "php$(version)-ldap", + "php-pecl-json-post" + + }; + # "php$(version)-curl", commands: # (debian|ubuntu)&php_install_repo:: @@ -126,6 +146,12 @@ vars: "apache_m" string => "php"; "apache_f" string => "libphp"; + centos:: + "version" string => ""; + "fpm_pkgs" slist => { "php$(version)-fpm" }; + "fpm_service_name" string => "php$(version)-fpm"; + "fpm_socket" string => "/run/php-fpm/www.sock"; + files: "$(ini_files)"