Veritas-bu

[Veritas-bu] list all client version

2004-03-12 02:30:50
Subject: [Veritas-bu] list all client version
From: r.degroot AT dto.tudelft DOT nl (Ruben de Groot)
Date: Fri, 12 Mar 2004 08:30:50 +0100
Edelson, Tracie wrote:
> Have tried to figure this out or find it on the groups but cant!
>  
> With the GUI, under the clients for host properties, you can highlight 
> all of the clients and get the version they are running. I can't figure 
> the  line command to get the same info....

Try this little script:

#!/bin/sh
#
# get all client versions

CFGCMD="/opt/openv/netbackup/bin/admincmd/bpgetconfig -g"
CLTDIR="/opt/openv/netbackup/db/images"

for client in `ls ${CLTDIR}`; do
         echo "======================================="
         echo "client : ${client}"
         ${CFGCMD} ${client}
         echo "======================================="
         echo ""
done



<Prev in Thread] Current Thread [Next in Thread>