diff --git a/RTCP/Run/src/LOFAR/Locations.py b/RTCP/Run/src/LOFAR/Locations.py
index d02d935ad3ef55790acf7a38943dac6552282aec..8ca22bb961075c21fc9c82cc8c4ee2be7c77ddc6 100644
--- a/RTCP/Run/src/LOFAR/Locations.py
+++ b/RTCP/Run/src/LOFAR/Locations.py
@@ -39,9 +39,9 @@ class Locations:
 	"basedir": "/cephome/lofar-prod/lofar",
 
         # the locations of the main executables
-	"cnproc":  "${BASEDIR}/bin/CN_Processing.cnk",
-	"ionproc": "${BASEDIR}/bin/IONProc.ppc",
-	"storage": "${BASEDIR}/bin/Storage.x86_64",
+	"cnproc":  "${BASEDIR}/bin/CN_Processing",
+	"ionproc": "${BASEDIR}/bin/IONProc",
+	"storage": "${BASEDIR}/bin/Storage",
       } )
       
       self.nodes.update( {
diff --git a/RTCP/Run/src/LOFAR/Sections.py b/RTCP/Run/src/LOFAR/Sections.py
index cb3364e2ea26b4dc883a8dfa9cf67dc585cde40d..8766df4c9cc3a9ecee8516c280137c84720c0963 100644
--- a/RTCP/Run/src/LOFAR/Sections.py
+++ b/RTCP/Run/src/LOFAR/Sections.py
@@ -16,7 +16,7 @@ class Section:
 
     self.logoutputs = []
     if Locations.nodes["logserver"]:
-      self.logoutputs.append( "tcp:%s" % (Locations.nodes["logserver"],) )
+      self.logoutputs.append( "%s" % (Locations.nodes["logserver"],) )
 
   def __str__(self):
     return self.__class__.__name__
@@ -112,6 +112,7 @@ class CNProcSection(Section):
     self.commands.append( AsyncCommand( "mpirun %s" % (" ".join(mpiparams),), logfiles, killcmd=mpikill ) )
 
   def check(self):
+    return
     # we have to own the partition
     owner = BGcontrol.owner( self.parset.partition )
     me = os.environ["USER"]