[LON-CAPA-cvs] cvs: loncom / lonsql
albertel
lon-capa-cvs@mail.lon-capa.org
Wed, 09 Feb 2005 20:39:47 -0000
albertel Wed Feb 9 15:39:47 2005 EDT
Modified files:
/loncom lonsql
Log:
- IP removal from hosts.tab
Index: loncom/lonsql
diff -u loncom/lonsql:1.65 loncom/lonsql:1.66
--- loncom/lonsql:1.65 Thu Aug 26 15:29:09 2004
+++ loncom/lonsql Wed Feb 9 15:39:47 2005
@@ -3,7 +3,7 @@
# The LearningOnline Network
# lonsql - LON TCP-MySQL-Server Daemon for handling database requests.
#
-# $Id: lonsql,v 1.65 2004/08/26 19:29:09 albertel Exp $
+# $Id: lonsql,v 1.66 2005/02/09 20:39:47 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -258,14 +258,12 @@
#
# Read hosts file
#
-my %hostip;
my $thisserver;
my $PREFORK=4; # number of children to maintain, at least four spare
open (CONFIG,"$perlvar{'lonTabDir'}/hosts.tab") || die "Can't read host file";
while (my $configline=<CONFIG>) {
- my ($id,$domain,$role,$name,$ip)=split(/:/,$configline);
- chomp($ip);
- $hostip{$ip}=$id;
+ my ($id,$domain,$role,$name)=split(/:/,$configline);
+ $name=~s/\s//g;
$thisserver=$name if ($id eq $perlvar{'lonHostID'});
#$PREFORK++;
}