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

RE: [Condor-users] more stuff not working with Windows



> requirements = name == "
> requirements = Arch == "INTEL"
> requirements = OpSys == "WINNT50"

Looks like your final requirements specification is overwriting the other
ones.

Have you tried using 
requirements = ( (name == "239032-mstc22.liv.ac.uk") && \
	(Arch == "INTEL") && (OpSys == "WINNT50") )

ISTR there is also an equivalent of +=, but I can't remember the syntax.

JK