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

[Condor-users] How to ban user



Hi,

I am trying to ban one particular user (userX@xxxxxxxxxxxxxx) running jobs on one execute machine (machineX)

By following the instruction "How to ban a user from executing jobs on specific machines

" in https://condor-wiki.cs.wisc.edu/index.cgi/wiki?p=HowToBanUser

 

I have following in condor_config.local on machineX (restarted condor_master)

 

IsBannedUser = User =?= "userX@xxxxxxxxxxxxxx"

#START = ($(START)) && ( ($(IsBannedUser)) == FALSE )

 

Since the above is not working now I have

START = ($(START)) && ( ($(IsBannedUser)) == FALSE ) && (User != userX@xxxxxxxxxxxxxx)

 

But still the jobs from userX@xxxxxxxxxxxxxx is running on the machine (machineX).

 

I have following condor version.

$CondorVersion: 7.4.2 Mar 29 2010 BuildID: 227044 $

$CondorPlatform: X86_64-LINUX_RHEL5 $

 

Could you please let me know how to ban a user (userX@xxxxxxxxxxxxxx) from executing jobs on specific machine (machineX)

 

Thanks,

Senthil