diff --git a/RTCP/Run/src/LOFAR/Locations.py b/RTCP/Run/src/LOFAR/Locations.py
index c51b725f7275a456628119ae7fecabff866e979f..7afa413e2f50f223ce0455c3a4e602f37e24da11 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