Hello community, here is the log from the commit of package apache2 for openSUSE:Factory checked in at 2017-06-05 18:48:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/apache2 (Old) and /work/SRC/openSUSE:Factory/.apache2.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apache2" Mon Jun 5 18:48:46 2017 rev:133 rq:500571 version:2.4.25 Changes: -------- --- /work/SRC/openSUSE:Factory/apache2/apache2.changes 2017-03-29 13:21:44.836416945 +0200 +++ /work/SRC/openSUSE:Factory/.apache2.new/apache2.changes 2017-06-05 18:48:52.793584240 +0200 @@ -1,0 +2,12 @@ +Fri Jun 2 07:36:43 UTC 2017 - [email protected] + +- server-tunning.conf: MaxClients was renamed to MaxRequestWorkers + [bsc#1037731] +- gensslcert: use hostname when fqdn is too long [bsc#1035829] + +------------------------------------------------------------------- +Fri May 19 09:01:33 UTC 2017 - [email protected] + +- remove apache-doc and apache-example-pages obsoletes/provides + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ apache2.spec ++++++ --- /var/tmp/diff_new_pack.f37bwE/_old 2017-06-05 18:48:54.613327746 +0200 +++ /var/tmp/diff_new_pack.f37bwE/_new 2017-06-05 18:48:54.617327182 +0200 @@ -1,7 +1,7 @@ # # spec file for package apache2 # -# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -282,9 +282,6 @@ %package doc Summary: Additional Package Documentation Group: Documentation/Other -# Remove after 13.2 is out of support scope -Provides: apache-doc = %{version} -Obsoletes: apache-doc < %{version} %if 0%{?suse_version} >= 1120 BuildArch: noarch %endif @@ -296,9 +293,6 @@ %package example-pages Summary: Example Pages for the Apache 2 Web Server Group: Productivity/Networking/Web/Servers -# Remove after 13.2 is out of support scope -Provides: apache-example-pages -Obsoletes: apache-example-pages %description example-pages Some Example pages for Apache that show information about the installed ++++++ apache2-server-tuning.conf ++++++ --- /var/tmp/diff_new_pack.f37bwE/_old 2017-06-05 18:48:55.145252770 +0200 +++ /var/tmp/diff_new_pack.f37bwE/_new 2017-06-05 18:48:55.149252206 +0200 @@ -18,12 +18,12 @@ # maximum number of server processes which are kept spare # http://httpd.apache.org/docs/2.4/mod/prefork.html#maxspareservers MaxSpareServers 10 - # highest possible MaxClients setting for the lifetime of the Apache process. + # highest possible MaxRequestWorkers setting for the lifetime of the Apache process. # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#serverlimit ServerLimit 150 - # maximum number of server processes allowed to start - # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxclients - MaxClients 150 + # maximum number of server processes allowed to start (formerly MaxClients) + # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers + MaxRequestWorkers 150 # maximum number of requests a server process serves # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestsperchild MaxRequestsPerChild 10000 @@ -43,9 +43,9 @@ # upper limit on the configurable number of threads per child process # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadlimit ThreadLimit 64 - # maximum number of simultaneous client connections - # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxclients - MaxClients 150 + # maximum number of simultaneous client connections (formerly MaxClients) + # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers + MaxRequestWorkers 150 # number of worker threads created by each child process # http://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadsperchild ThreadsPerChild 25 @@ -54,23 +54,6 @@ MaxRequestsPerChild 10000 </IfModule> -# leader MPM -<IfModule leader.c> - # initial number of server processes to start - StartServers 2 - # minimum number of worker threads which are kept spare - MinSpareThreads 25 - # maximum number of worker threads which are kept spare - MaxSpareThreads 75 - # maximum number of simultaneous client connections - MaxClients 150 - # constant number of worker threads in each server process - ThreadsPerChild 25 - # maximum number of requests a server process serves - MaxRequestsPerChild 10000 -</IfModule> - - # # KeepAlive: Whether or not to allow persistent connections (more than # one request per connection). Set to "Off" to deactivate. ++++++ gensslcert ++++++ --- /var/tmp/diff_new_pack.f37bwE/_old 2017-06-05 18:48:55.325227403 +0200 +++ /var/tmp/diff_new_pack.f37bwE/_new 2017-06-05 18:48:55.329226839 +0200 @@ -42,6 +42,11 @@ . $r/etc/sysconfig/network/config FQHOSTNAME=`hostname -f` +fqlength=`echo $FQHOSTNAME|wc -c` +if [ $fqlength -gt 63 ]; then + FQHOSTNAME=`hostname` +fi + # defaults comment="mod_ssl server certificate" name=
