WIPACrepo/pyglidein

check for cvmfs before starting condor

dsschult opened this issue · 3 comments

We should check for cvmfs before starting condor, since it's basically required for our jobs.

Simple check is:

if [ -e /cvmfs/icecube.opensciencegrid.org/py2-v1/setup.sh ]; then
    CVMFS="true"
fi

Harder is to launch parrot in the else case, and check again.

Would also help with moving condor into cvmfs rather than dealing with tarballs

Gonzalo: already done in df26634