blob: f536815f41b8d70830a57efd5b24e0391de032b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- scripts/perl/webstats Wed Feb 6 09:51:43 2002
+++ scripts/perl/webstats Sun Feb 16 18:09:33 2003
@@ -42,8 +42,8 @@
#use strict;
use Config::IniFiles;
-#we read variables from /etc/webstats/webstats.ini
-$cfg = new Config::IniFiles -file => "/etc/webstats/webstats.ini";
+#we read variables from $PREFIX/etc/webstats/webstats.ini
+$cfg = new Config::IniFiles -file => "%%PREFIX%%/etc/webstats/webstats.ini";
my $VHOSTDIR=$cfg->val('rmagic', 'VHOSTDIR');
my $WWWDIR=$cfg->val('rmagic', 'WWWDIR');
@@ -73,7 +73,7 @@
#
#What does it do?:
#
-# if DEBUG variable in /etc/webstats/webstats.ini is set to "yes"
+# if DEBUG variable in $PREFIX/etc/webstats/webstats.ini is set to "yes"
# print some useful information to $WEBSTATSLOG
sub debug{
if ($DEBUG eq "yes"){
|