/[smecontribs]/rpms/smeserver-awstats/contribs10/smeserver-awstats-1.4-bz11045.patch
ViewVC logotype

Diff of /rpms/smeserver-awstats/contribs10/smeserver-awstats-1.4-bz11045.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.3 by jpp, Mon Feb 22 20:43:18 2021 UTC Revision 1.5 by jpp, Mon Feb 22 21:16:30 2021 UTC
# Line 122  diff -Nur smeserver-awstats-1.4.old/root Line 122  diff -Nur smeserver-awstats-1.4.old/root
122  -);  -);
123  -  -
124  -exit (0);  -exit (0);
125    diff -Nur smeserver-awstats-1.4.old/root/etc/e-smith/templates/etc/e-smith/web/panels/manager/cgi-bin/.awstats/awstats.conf/10conf smeserver-awstats-1.4/root/etc/e-smith/templates/etc/e-smith/web/panels/manager/cgi-bin/.awstats/awstats.conf/10conf
126    --- smeserver-awstats-1.4.old/root/etc/e-smith/templates/etc/e-smith/web/panels/manager/cgi-bin/.awstats/awstats.conf/10conf    2018-07-20 09:44:29.000000000 -0400
127    +++ smeserver-awstats-1.4/root/etc/e-smith/templates/etc/e-smith/web/panels/manager/cgi-bin/.awstats/awstats.conf/10conf        2021-02-22 16:15:21.799000000 -0500
128    @@ -165,6 +165,7 @@
129    
130         my $networkDB = esmith::ConfigDB->open('networks') or die("can't open Networks DB");
131         my $skipHosts = $configDB->get_prop( "AWStats", "SkipHosts" ) || '';
132    +    my $allIPs = "";
133    
134         $OUT = "SkipHosts=\"";
135    
136    @@ -205,6 +206,9 @@
137    
138             }
139         }
140    +    
141    +    # Escape full stops e.g. \.co\.uk ; for REGEX only
142    +    $allIPs =~ s/\./\\./g;
143    
144         # external IP
145         #
146    @@ -216,6 +220,8 @@
147             # If Skip ExternalIP is set to mask
148             if ( defined $ipskipExtIP && $ipskipExtIP eq "mask" ) {
149                 my $return = mip( $externalip, $externalnetmask );
150    +           #Escape full stops e.g. \.co\.uk ; for REGEX only
151    +           $return =~ s/\./\\./g;
152                 $allIPs .= "REGEX[^$return] ";
153    
154             }
155    @@ -226,12 +232,6 @@
156             }
157    
158         }
159    -    # Always add
160    -    #$allIPs = "127.0.0.1 $allIPs";
161    -
162    -    # Escape full stops e.g. \.co\.uk
163    -    $allIPs =~ s/\./\\./g;
164    -
165         $OUT .= "127.0.0.1 $skipHosts $allIPs";
166    
167         $OUT .= '"' . "\n";
168    @@ -242,7 +242,7 @@
169    
170         my $domainsDB = esmith::ConfigDB->open('domains') or die("can't open Domains DB");
171    
172    -    $OUT .= 'HostAliases="localhost 127\.0\.0\.1';
173    +    $OUT .= 'HostAliases="localhost 127.0.0.1';
174    
175         # push( @aliases, $DynDnsHostname ) if defined $DynDnsHostname;
176         # Need to find DynDnsHostname if it exists
177    @@ -259,11 +259,11 @@
178         # needed for IE6 beta
179          if ( defined $ipskipExtIP && $ipskipExtIP eq "mask" ) {
180              $externalip = mip( $externalip, $externalnetmask );
181    -         $externalip =~ s/\./\\./g;
182    +         #$externalip =~ s/\./\\./g;
183              $OUT .= " " . $externalip;
184          }
185          elsif ( defined $ipskipExtIP && $ipskipExtIP eq "yes" ) {
186    -         $externalip =~ s/\./\\./g;
187    +         #$externalip =~ s/\./\\./g;
188              $OUT .= " " . $externalip;
189          }
190    
191  diff -Nur smeserver-awstats-1.4.old/root/etc/yum/post-actions/awstats.action smeserver-awstats-1.4/root/etc/yum/post-actions/awstats.action  diff -Nur smeserver-awstats-1.4.old/root/etc/yum/post-actions/awstats.action smeserver-awstats-1.4/root/etc/yum/post-actions/awstats.action
192  --- smeserver-awstats-1.4.old/root/etc/yum/post-actions/awstats.action  1969-12-31 19:00:00.000000000 -0500  --- smeserver-awstats-1.4.old/root/etc/yum/post-actions/awstats.action  1969-12-31 19:00:00.000000000 -0500
193  +++ smeserver-awstats-1.4/root/etc/yum/post-actions/awstats.action      2021-02-22 15:02:23.606000000 -0500  +++ smeserver-awstats-1.4/root/etc/yum/post-actions/awstats.action      2021-02-22 15:02:23.606000000 -0500
194  @@ -0,0 +1,2 @@  @@ -0,0 +1,2 @@
195  +awstats:install:/etc/e-smith/events/actions/awstats-upgrade  +awstats:install:/etc/e-smith/events/actions/awstats-upgrade
196  +awstats:update:/etc/e-smith/events/actions/awstats-upgrade  +awstats:update:/etc/e-smith/events/actions/awstats-upgrade
197    diff -Nur smeserver-awstats-1.4.old/root/sbin/e-smith/awstats-pp smeserver-awstats-1.4/root/sbin/e-smith/awstats-pp
198    --- smeserver-awstats-1.4.old/root/sbin/e-smith/awstats-pp      2007-04-06 00:59:44.000000000 -0400
199    +++ smeserver-awstats-1.4/root/sbin/e-smith/awstats-pp  2021-02-22 16:10:24.112000000 -0500
200    @@ -47,7 +47,7 @@
201    
202     my $status=db_get_prop(\%conf, "AWStats", "status");
203     exit (0) if not defined $status || $status ne "enabled";
204    -$debug=(db_get_prop(\%conf, "AWStats", "Debug") eq "yes");
205    +$debug=((db_get_prop(\%conf, "AWStats", "Debug") ||"no") eq "yes");
206    
207     # primitive command line options parsing
208     foreach (@ARGV) {


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed