Skip to content
Snippets Groups Projects
Commit e4116661 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Use tdaq software stack from cvmfs (ATLINFR-1689)

First look for tdaq software on cvmfs. Still maintain afs as fallback.


Former-commit-id: cf321b99c383b1638dbbb97b301f6f121edba892
parent 26da069f
No related merge requests found
......@@ -10,10 +10,13 @@
if [ -z "${TDAQ_RELEASE_BASE}" ]; then
if [ -d /afs/cern.ch/atlas/project/tdaq/prod ]; then
if [ -d /cvmfs/atlas.cern.ch/repo/sw/tdaq ]; then
export TDAQ_RELEASE_BASE=/cvmfs/atlas.cern.ch/repo/sw/tdaq
elif [ -d /afs/cern.ch/atlas/project/tdaq/prod ]; then
export TDAQ_RELEASE_BASE=/afs/cern.ch/atlas/project/tdaq/prod
elif [ -d /cvmfs/atlas.cern.ch/repo/sw/software/21.0 ]; then
export TDAQ_RELEASE_BASE=/cvmfs/atlas.cern.ch/repo/sw/software/21.0
else
echo "Error: Cannot find TDAQ software installation"
return 1
fi
echo "Set TDAQ_RELEASE_BASE = ${TDAQ_RELEASE_BASE}"
......
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