1 |
%define version 3.0.0 |
%define version 3.0.0 |
2 |
%define release 1 |
%define release 21 |
3 |
%define name smeserver-php |
%define name smeserver-php |
4 |
|
|
5 |
|
|
10 |
License: MIT |
License: MIT |
11 |
Group: Applications/System |
Group: Applications/System |
12 |
Source: %{name}-%{version}.tar.gz |
Source: %{name}-%{version}.tar.gz |
13 |
|
Patch0: smeserver-php-fpm-0.1.1-bz10871-ibay-php-fpm.patch |
14 |
|
Patch1: smeserver-php-fpm-0.1.1-bz10871-bz10335-fix1.patch |
15 |
|
Patch2: smeserver-php-fpm-0.1.1-bz10879-php-fpm_syslog.patch |
16 |
|
Patch3: smeserver-php-fpm-0.1.1-bz10877-pool-logs.patch |
17 |
|
Patch4: smeserver-php-3.0.0-bz10888-sys_temp_dir.patch |
18 |
|
Patch5: smeserver-php-fpm-0.1.1-bz0335-fix2.patch |
19 |
|
Patch6: smeserver-php-fpm-0.1.1-bz10335-fix3-systemd-units.patch |
20 |
|
Patch7: smeserver-php-3.0.0-bz10891-php.ini-allversions.patch |
21 |
|
Patch8: smeserver-php-3.0.0-bz10904-pass-auth-token-to-fpm.patch |
22 |
|
Patch9: smeserver-php-3.0.0-bz8787-phpmail.patch |
23 |
|
Patch10: smeserver-php-3.0.0-bz11014.sme-server.target.patch |
24 |
|
Patch11: smeserver-php-3.0.0-bz11087-webapps.patch |
25 |
|
Patch12: smeserver-php-3.0.0-bz11092.typo-upload.patch |
26 |
|
Patch13: smeserver-php-3.0.0-bz11173-bz11015-logging.patch |
27 |
|
Patch14: smeserver-php-3.0.0-bz11267-ibay-php-version.patch |
28 |
|
Patch15: smeserver-php-3.0.0-bz11287-fix-event-links.patch |
29 |
|
|
30 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
31 |
BuildArch: x86_64 |
BuildArch: x86_64 |
34 |
Requires: e-smith-base >= 5.6.0 |
Requires: e-smith-base >= 5.6.0 |
35 |
Provides: e-smith-php = %{version}-%{release} |
Provides: e-smith-php = %{version}-%{release} |
36 |
Obsoletes: e-smith-php < %{version} |
Obsoletes: e-smith-php < %{version} |
37 |
|
Provides: smeserver-webapps-common |
38 |
|
|
39 |
Requires: tmpwatch |
Requires: tmpwatch |
40 |
Requires: logrotate |
Requires: logrotate |
210 |
|
|
211 |
%prep |
%prep |
212 |
%setup -q -n %{name}-%{version} |
%setup -q -n %{name}-%{version} |
213 |
|
%patch0 -p1 |
214 |
|
%patch1 -p1 |
215 |
|
%patch2 -p1 |
216 |
|
%patch3 -p1 |
217 |
|
%patch4 -p1 |
218 |
|
%patch5 -p1 |
219 |
|
%patch6 -p1 |
220 |
|
%patch7 -p1 |
221 |
|
%patch8 -p1 |
222 |
|
%patch9 -p1 |
223 |
|
%patch10 -p1 |
224 |
|
%patch11 -p1 |
225 |
|
%patch12 -p1 |
226 |
|
%patch13 -p1 |
227 |
|
%patch14 -p1 |
228 |
|
%patch15 -p1 |
229 |
|
|
230 |
%build |
%build |
231 |
perl createlinks |
perl createlinks |
239 |
%{__mkdir_p} root/%{_presetdir} |
%{__mkdir_p} root/%{_presetdir} |
240 |
echo 'enable php-fpm.service' >root/%{_presetdir}/80-koozali-php.preset |
echo 'enable php-fpm.service' >root/%{_presetdir}/80-koozali-php.preset |
241 |
|
|
242 |
|
%{__mkdir_p} root/etc/e-smith/templates.metadata/etc/logrotate.d/ |
243 |
for phpver in "55" "56" "70" "71" "72" "73" "74"; do |
for phpver in "55" "56" "70" "71" "72" "73" "74"; do |
244 |
#needed folder |
#needed folder |
245 |
%{__mkdir_p} root/var/log/php/php$phpver/ |
%{__mkdir_p} root/var/log/php/php$phpver/ |
257 |
#enable by default php fpm |
#enable by default php fpm |
258 |
echo 'enable php'$phpver'-php-fpm.service' >>root/%{_presetdir}/80-koozali-php.preset |
echo 'enable php'$phpver'-php-fpm.service' >>root/%{_presetdir}/80-koozali-php.preset |
259 |
|
|
260 |
|
#logrotate templates |
261 |
|
echo 'TEMPLATE_PATH="/etc/logrotate.d/php-fpm" |
262 |
|
MORE_DATA={ PHP_VERSION => '$phpver'}' > root/etc/e-smith/templates.metadata/etc/logrotate.d/php$phpver-php-fpm |
263 |
|
|
264 |
done |
done |
265 |
|
|
266 |
#to add a new php version |
#to add a new php version |
267 |
#php5* |
#php5* |
268 |
for phpver in "55" ; do |
for phpver in "55" ; do |
269 |
#cp php56 metadata |
#cp php56 metadata |
270 |
cp -a root/etc/e-smith/templates.metadata/opt/remi/php56 root/etc/e-smith/templates.metadata/opt/remi/php$phpver |
mkdir -p root/etc/e-smith/templates.metadata/opt/remi/php$phpver |
271 |
|
cp -a root/etc/e-smith/templates.metadata/opt/remi/php56/* root/etc/e-smith/templates.metadata/opt/remi/php$phpver |
272 |
#sed inplace |
#sed inplace |
273 |
find root/etc/e-smith/templates.metadata/opt/remi/php$phpver -type f -print0 | xargs -0 sed -i 's/56/'$phpver'/g' |
find root/etc/e-smith/templates.metadata/opt/remi/php$phpver -type f -print0 | xargs -0 sed -i 's/56/'$phpver'/g' |
274 |
done |
done |
276 |
# php7* |
# php7* |
277 |
for phpver in "72" "73" "74"; do |
for phpver in "72" "73" "74"; do |
278 |
#cp ph70 metada |
#cp ph70 metada |
279 |
cp -a root/etc/e-smith/templates.metadata/etc/opt/remi/php70 root/etc/e-smith/templates.metadata/etc/opt/remi/php$phpver |
mkdir -p root/etc/e-smith/templates.metadata/etc/opt/remi/php$phpver/ |
280 |
|
cp -a root/etc/e-smith/templates.metadata/etc/opt/remi/php70/* root/etc/e-smith/templates.metadata/etc/opt/remi/php$phpver/ |
281 |
#sed inplace |
#sed inplace |
282 |
find root/etc/e-smith/templates.metadata/etc/opt/remi/php$phpver -type f -print0 | xargs -0 sed -i 's/70/'$phpver'/g' |
find root/etc/e-smith/templates.metadata/etc/opt/remi/php$phpver -type f -print0 | xargs -0 sed -i 's/70/'$phpver'/g' |
283 |
done |
done |
317 |
%preun |
%preun |
318 |
|
|
319 |
%changelog |
%changelog |
320 |
|
* Mon Dec 21 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 3.0.0.21.sme |
321 |
|
- Fix createlinks typo missing event links [SME: 11287] |
322 |
|
- Fix typo |
323 |
|
|
324 |
|
* Thu Dec 17 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 3.0.0.20.sme |
325 |
|
- Fix individual PHP version for ibay [SME: 11267] |
326 |
|
|
327 |
|
* Sun Dec 13 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-19.sme |
328 |
|
- fix wrong syntax = in place of eq [SME: 11173] |
329 |
|
thanks to Terry Fage |
330 |
|
|
331 |
|
* Mon Dec 07 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-18.sme |
332 |
|
- fix logrotate error because parent directory has insecure permissions [SME: 11173] |
333 |
|
|
334 |
|
* Wed Nov 18 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-17.sme |
335 |
|
- fix warning: ~ action is deprecated with rsyslog [SME: 11015] |
336 |
|
- fix logrotate error because parent directory has insecure permissions [SME: 11173] |
337 |
|
|
338 |
|
* Mon Nov 09 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-16.sme |
339 |
|
- fix typo for upload_tmp_dir [SME: 11092] |
340 |
|
|
341 |
|
* Sun Nov 08 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-15.sme |
342 |
|
- improve integration of webapps : virtualhost and event [SME: 11087] |
343 |
|
|
344 |
|
* Wed Sep 30 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-14.sme |
345 |
|
- enable php services for sme-server.target [SME: 11014] |
346 |
|
|
347 |
|
* Tue Jun 23 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-13.sme |
348 |
|
- move and fix link to start services units [SME: 10960] |
349 |
|
|
350 |
|
* Fri Mar 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-12.sme |
351 |
|
- fix typo in smeserver-php-3.0.0-bz10904-pass-auth-token-to-fpm.patch [SME: 10904] |
352 |
|
|
353 |
|
* Thu Mar 26 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-11.sme |
354 |
|
- help monitoring email sent by php [SME: 8787] |
355 |
|
|
356 |
|
* Thu Mar 26 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-9.sme |
357 |
|
- move auto_prepend_file from php.ini to php-fpm.d [SME: 10904] |
358 |
|
add /usr/share/php in open_basedir if dfined to allow execution of auto_prepend_file |
359 |
|
- fix templates-metadata path fot php 55 72 73 74 |
360 |
|
|
361 |
|
* Tue Mar 24 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-8.sme |
362 |
|
- transfer SERVER auth variables from httpd server to php-fpm pool [SME: 10904] |
363 |
|
this allow easy auth for php app using httpd auth as if using php module |
364 |
|
|
365 |
|
* Tue Mar 24 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-7.sme |
366 |
|
- templating all php.ini for all available version [SME: 10891] |
367 |
|
expanded using webapps-update, smeserver-php-update, console-save and bootstrap-console-save |
368 |
|
Values are those from php configuration key, unless defined for the php$VERSION key. |
369 |
|
only one template for all, using templates.metadata and conditions vhen needed. |
370 |
|
reworked the content of the php.ini to have it uptodate |
371 |
|
|
372 |
|
* Wed Mar 11 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-6.sme |
373 |
|
- enable units for php-fpm services [SME: 10335] |
374 |
|
|
375 |
|
* Tue Mar 10 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-5.sme |
376 |
|
- set sys_temp_dir for php-fpm and ibays [SME: 10888] |
377 |
|
- set restart for php-fpm services in the smeserver-php-update event [SME: 10335] |
378 |
|
|
379 |
|
* Mon Mar 09 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-3.sme |
380 |
|
- fix typos and logic in scripts [SME: 10335] |
381 |
|
- only set php admin values if php module is enabled [SME: 10871] |
382 |
|
- redirect php*-php-fpm services logs to /var/log/php/php*/php-fpm.log [SME: 10879] |
383 |
|
- pool logs in /var/log/php/*/error.log [SME: 10877] |
384 |
|
|
385 |
|
* Sat Feb 01 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-2.sme |
386 |
|
- modification for ibays php-fpm support in httpd.conf [SME: 10871] |
387 |
|
|
388 |
* Tue Jan 28 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-1.sme |
* Tue Jan 28 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.0.0-1.sme |
389 |
- initial release of smeserver-php from smeserver-php-fpm [SME: 10335] |
- initial release of smeserver-php from smeserver-php-fpm [SME: 10335] |
390 |
added support for ibays, remove references to shares (should move to smeserver-share-folders) |
added support for ibays, remove references to shares (should move to smeserver-share-folders) |