WIPACrepo / pyglidein

Some python scripts to launch HTCondor glideins
MIT License
7 stars 20 forks source link

check for cvmfs before starting condor #64

Closed dsschult closed 7 years ago

dsschult commented 7 years ago

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.

briedel commented 7 years ago

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

gonzalomerino commented 7 years ago

Hi David,

OSG glideinWMS glideins publish this classad after checking for our repo

HAS_CVMFS_icecube_opensciencegrid_org

true, or false

could we adopt the same one in pyglidein?

Gonzalo

dsschult commented 7 years ago

Gonzalo: already done in df26634