[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] Condor mapfile



Hi all,

first of all my condor installation:
$CondorVersion: 8.8.9 May 06 2020 BuildID: 503068 PackageID: 8.8.9-1 $
$CondorPlatform: x86_64_CentOS7 $


I'm trying to setup my mapfile without success.

Here the FQANs that I want to map:

x509UserProxyFQAN = "/DC=org/DC=incommon/C=US/ST=Illinois/L=Batavia/O=Fermi Research Alliance/OU=Fermilab/CN=blabla.bla.gov,/dune/Role=pilot/Capability=NULL,/dune/Role=NULL/Capability=NULL" x509UserProxyFQAN = "/DC=ch/DC=cern/OU=Organic Units/OU=Users/CN=user/CN=0000/CN=Name Last name,/lhcb/Role=pilot/Capability=NULL,/lhcb/Role=NULL/Capability=NULL" x509UserProxyFQAN = "/DC=ch/DC=cern/OU=Organic Units/OU=Users/CN=user/CN=0000/CN=Name Last name/alice/Role=NULL/Capability=NULL,/alice/alarm/Role=NULL/Capability=NULL,/alice/lcg1/Role=NULL/Capability=NULL,/alice/team/Role=NULL/Capability=NULL"

Here my configuration files:

*******************
Extract of condor_mapfile
*******************
GSI ".*,\/alice\/Role\=.*" user_alice
GSI ".*,\/lhcb\/Role\=.*" user_lhcb
GSI ".*,\/dune\/Role\=.*" user_dune
GSI (.*) user_others
CLAIMTOBE .* anonymous@claimtobe
FS (.*) \1

**********EOF**************

Extract of Job_router:
************************
JOB_ROUTER_ENTRIES @=jre
[
  TargetUniverse = 5;
    name = "Filtering alice jobs";
  Requirements = regexp("\/alice\/Role\=*", TARGET.x509UserProxyFirstFQAN);
]
@jre

JOB_ROUTER_ENTRIES @=jre
[
  TargetUniverse = 5;
    name = "Filtering LHCb jobs";
  Requirements = regexp("\/lhcb\/Role\=*", TARGET.x509UserProxyFirstFQAN);
]
@jre


JOB_ROUTER_ENTRIES @=jre
[
  TargetUniverse = 5;
    name = "Filtering Dune jobs";
  Requirements = regexp("\/dune\/Role\=*", TARGET.x509UserProxyFirstFQAN);
]
@jre


**********EOF**************


What I'm doing wrong ?


Best regards,

Eraldo Jr