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

Task #8443: Forgot to pass parameters...

parent a9b81cb6
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ ln -sfT $TBB_PARSET /globalhome/lofarsystem/log/latest || true
mkfifo -m 0660 "$COMMANDPIPE" || true
# Construct command line
CMDLINE="runObservation.sh $PARAMS"
COMMAND="runObservation.sh -P $PIDFILE -o Cobalt.commandStream=file:$COMMANDPIPE $PARSET"
# Process cluster requirements
parse_cluster_description
......@@ -74,13 +74,10 @@ if $SLURM; then
SLURM_VARS+=" $s=\$$s"
done
COMMAND="ssh -tt $HEADNODE salloc -N $NRCOMPUTENODES bash -c 'ssh `hostname -f` -tt $SLURM_VARS $CMDLINE'"
else
COMMAND="$CMDLINE"
COMMAND="ssh -tt $HEADNODE salloc -N $NRCOMPUTENODES bash -c 'ssh `hostname -f` -tt $SLURM_VARS $COMMAND'"
fi
# Start observation in the background
PARAMS="-P $PIDFILE -o Cobalt.commandStream=file:$COMMANDPIPE $PARSET"
echo "Starting $COMMAND"
$COMMAND > $LOGFILE 2>&1 </dev/null &
PID=$!
......
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