Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] FW: Web interface
- Date: Wed, 1 Feb 2006 16:52:55 -0000
- From: "Kewley, J \(John\)" <j.kewley@xxxxxxxx>
- Subject: Re: [Condor-users] FW: Web interface
> ...This script simply gets a list of all the machines in the cluster from condor_status,
> converts the hostnames to ipnumbers using /etc/hosts and then ...
Can you not use an option to condor_status -format to get it to print IP address
rather than use /etc/hosts ?
Something like
condor_status -format '%20s\n' MyAddress | uniq | sed 's/^<\(.*\):.*$/\1/'
uniq means multiple processors / VMs on same processor give only one entry -
that may not be what you want.
JK