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: ...@@ -39,9 +39,9 @@ class Locations:
"basedir": "/cephome/lofar-prod/lofar", "basedir": "/cephome/lofar-prod/lofar",
# the locations of the main executables # the locations of the main executables
"cnproc": "${BASEDIR}/bin/CN_Processing.cnk", "cnproc": "${BASEDIR}/bin/CN_Processing",
"ionproc": "${BASEDIR}/bin/IONProc.ppc", "ionproc": "${BASEDIR}/bin/IONProc",
"storage": "${BASEDIR}/bin/Storage.x86_64", "storage": "${BASEDIR}/bin/Storage",
} ) } )
self.nodes.update( { self.nodes.update( {
......
...@@ -16,7 +16,7 @@ class Section: ...@@ -16,7 +16,7 @@ class Section:
self.logoutputs = [] self.logoutputs = []
if Locations.nodes["logserver"]: if Locations.nodes["logserver"]:
self.logoutputs.append( "tcp:%s" % (Locations.nodes["logserver"],) ) self.logoutputs.append( "%s" % (Locations.nodes["logserver"],) )
def __str__(self): def __str__(self):
return self.__class__.__name__ return self.__class__.__name__
...@@ -112,6 +112,7 @@ class CNProcSection(Section): ...@@ -112,6 +112,7 @@ class CNProcSection(Section):
self.commands.append( AsyncCommand( "mpirun %s" % (" ".join(mpiparams),), logfiles, killcmd=mpikill ) ) self.commands.append( AsyncCommand( "mpirun %s" % (" ".join(mpiparams),), logfiles, killcmd=mpikill ) )
def check(self): def check(self):
return
# we have to own the partition # we have to own the partition
owner = BGcontrol.owner( self.parset.partition ) owner = BGcontrol.owner( self.parset.partition )
me = os.environ["USER"] me = os.environ["USER"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment