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

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