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

[Condor-users] version matching



To test whether the machines I have upgraded to 6.6.6 worked OK, I tried
having a REQUIREMENTS which matched the CondorVersion.

Instead of being a simple 6.6.6, it is defined sa follows:
  CondorVersion = "$CondorVersion: 6.6.6 Jul 26 2004 $"

If I match as follows:
REQUIREMENTS = ( ... && (CondorVersion == "$CondorVersion: 6.6.6 Jul 26 2004
$") )
it runs on machines with both 6.6.5 and 6.6.6 versions of condor

and if I match like this (in a vain hope of avoiding potential macro
substitution):
REQUIREMENTS = ( ... && (CondorVersion == '$CondorVersion: 6.6.6 Jul 26 2004
$') )

it says that nothing matches!

any ideas?

JK