Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] condor_status and strings
- Date: Mon, 19 Jun 2006 10:57:53 -0400
- From: "Ian Chesal" <ICHESAL@xxxxxxxxxx>
- Subject: Re: [Condor-users] condor_status and strings
> Is there a way to match a partial string given i'm running a 6.6.11
submit
> machine ? or does anybody have any other ideas on how i can achieve
the
> same effect ?
Condor Team: It'd be nice to have a set of attributes on every machine
that can be used to find machines with a range of Condor versions.
Perhaps three:
CondorVersionMajor
CondorVersionMinor
CondorVersionRelease
Give them integer values and they can be used to make nice version
queries like this:
condor_status -const 'CondorVersionMajor == 6 &&
CondorVersionMinor < 7'
Doesn't seem that hard to implement and it would make finding machines
that need to be upgraded much simpler.
- Ian