Skip to content
Snippets Groups Projects
Commit e25150b1 authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: removed superfluous location information regarding Storage

parent c8892b29
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment