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

Re: [Condor-users] Ignoring job requirements defaults?



> Hi,
> 
> Is there a way to tell Condor to not automatically include
requirements
> about Operating System or Architecture for a job if they are not
> explicitly specified in a submit file?
> 
> I am using Condor 6.7.16.

Condor only adds the auto requirements if they're not found in the
requirements string to begin with.

So if you didn't want to have the OpSys auto assigned you'd need to put:

	requirements = OpSys == "MyOpsys"

Or if you didn't care which OpSys it ran on:

	requirements = OpSys == "True"

- Ian