diff options
author | Remi Collet <remi@remirepo.net> | 2018-03-28 13:42:18 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-03-28 13:42:18 +0200 |
commit | 5ebd55275c6eb1672ed65f0cb84b60d138393b35 (patch) | |
tree | 7060f22f08038a1c43c0c54dfc4b56500d221cc1 | |
parent | 237eab9a582526af3817e2a494228b83691a8eda (diff) |
Update to 7.1.16 - http://www.php.net/releases/7_1_16.php
FPM: update default pool configuration for process.dumpable
-rw-r--r-- | failed.txt | 14 | ||||
-rw-r--r-- | php-fpm-www.conf | 6 | ||||
-rw-r--r-- | php71.spec | 8 |
3 files changed, 20 insertions, 8 deletions
@@ -1,20 +1,22 @@ -===== 7.1.16RC1 (2018-03-15) +===== 7.1.16 (2018-03-29) $ grep -r 'Tests failed' /var/lib/mock/*/build.log /var/lib/mock/el6i/build.log:Tests failed : 0 /var/lib/mock/el6x/build.log:Tests failed : 0 /var/lib/mock/el7x/build.log:Tests failed : 0 -/var/lib/mock/fc25i/build.log:Tests failed : 0 +/var/lib/mock/fc25i/build.log:Tests failed : 2 /var/lib/mock/fc25x/build.log:Tests failed : 0 -/var/lib/mock/fc26i/build.log:Tests failed : 1 -/var/lib/mock/fc26x/build.log:Tests failed : 0 +/var/lib/mock/fc26i/build.log:Tests failed : 0 +/var/lib/mock/fc26x/build.log:Tests failed : 1 /var/lib/mock/fc27i/build.log:Tests failed : 0 -/var/lib/mock/fc27x/build.log:Tests failed : 0 +/var/lib/mock/fc27x/build.log:Tests failed : 1 -fc26i: +fc25i, fc26x: 1 Bug #60120 proc_open hangs with stdin/out with 2048+ bytes [ext/standard/tests/streams/proc_open_bug60120.phpt] +fc25i, fc27x: + 1 Bug #64438 proc_open hangs with stdin/out with 4097+ bytes [ext/standard/tests/streams/proc_open_bug64438.phpt] 1 proc_open give erratic test results :( diff --git a/php-fpm-www.conf b/php-fpm-www.conf index 3264334..d5b7a3a 100644 --- a/php-fpm-www.conf +++ b/php-fpm-www.conf @@ -71,6 +71,12 @@ listen.allowed_clients = 127.0.0.1 ; Default Value: no set ; process.priority = -19 +; Set the process dumpable flag (PR_SET_DUMPABLE prctl) even if the process user +; or group is differrent than the master process user. It allows to create process +; core dump and ptrace the process for the pool user. +; Default Value: no +; process.dumpable = yes + ; Choose how the process manager will control the number of child processes. ; Possible Values: ; static - a fixed number (pm.max_children) of child processes; @@ -108,12 +108,12 @@ %endif %global upver 7.1.16 -%global rcver RC1 +#global rcver RC1 Summary: PHP scripting language for creating dynamic web sites Name: php Version: %{upver}%{?rcver:~%{rcver}} -Release: 3%{?dist} +Release: 1%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -2053,6 +2053,10 @@ fi %changelog +* Wed Mar 28 2018 Remi Collet <remi@remirepo.net> - 7.1.16-1 +- Update to 7.1.16 - http://www.php.net/releases/7_1_16.php +- FPM: update default pool configuration for process.dumpable + * Wed Mar 21 2018 Remi Collet <remi@remirepo.net> - 7.1.16~RC1-3 - use systemd RuntimeDirectory instead of /etc/tmpfiles.d |