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

bug 1362: updated production binary locations, and disabled cnproc validation

parent d1a91505
No related branches found
No related tags found
No related merge requests found
......@@ -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( {
......
......@@ -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"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment