From e25150b1566783ce709eb851e79cd23eec5b604e Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Thu, 14 Apr 2011 15:09:23 +0000 Subject: [PATCH] bug 1362: removed superfluous location information regarding Storage --- RTCP/Run/src/LOFAR/Locations.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/RTCP/Run/src/LOFAR/Locations.py b/RTCP/Run/src/LOFAR/Locations.py index c51b725f727..7afa413e2f5 100644 --- a/RTCP/Run/src/LOFAR/Locations.py +++ b/RTCP/Run/src/LOFAR/Locations.py @@ -21,8 +21,6 @@ class Hosts: def __init__(self): self.hostnames = {} - self.populate() - def add(self,hostname,ip,interface="external"): ips = self.hostnames.get( hostname, {} ); ips[interface] = ip @@ -39,17 +37,6 @@ class Hosts: # fallback return gethostbyname( hostname ) - def populate(self): - # storage nodes lse001 - lse024 - for i in xrange( 1, 25 ): - self.add( "lse%03d" % (i,), - "10.176.1.%d" % (i,), - "front" ) - - self.add( "lse%03d" % (i,), - "10.174.0.%d" % (i,), - "back" ) - class Locations: def __init__(self): self.isproduction = isProduction() @@ -105,11 +92,6 @@ class Locations: "nextmsnumber": "/globalhome/lofarsystem/log/nextMSNumber", } ) - self.nodes.update( { - # on which node to start the mpirun for Storage - "storagemaster": "10.144.4.1", - } ) - if self.isproduction: self.files.update( { # fix the homedir, for systems which link to /cephome, /localhome, /home. etc -- GitLab