cancel
Showing results for 
Search instead for 
Did you mean: 

LiveUpdate policy

Peter_Jakobs
Level 5
Partner Accredited Certified
Hi,

Is there a 'smart' way to create LiveUpdate policies based on the clients that you have defined in all your policies?

I'm thinking about some scripting, so I don't have to insert manually 400+ clients in live update policies.

Peter
1 ACCEPTED SOLUTION

Accepted Solutions

Andy_Welburn
Level 6

bpplclients -allunique -noheader > CLIENTLIST.txt   (you can edit this for just those clients you're interested in)

cat CLIENTLIST.txt|
while read HARDWARE OS CLIENT
do
bpplclients Live_Update_Policy_Name -internal -add $CLIENT $HARDWARE $OS
done


Or are you looking for something even more "refined"? wink

Maybe looking at various LU policies based on OS or hardware?

View solution in original post

3 REPLIES 3

Andy_Welburn
Level 6
DOCUMENTATION: How can clients be added to a LiveUpdate policy using the command line? How can clients be removed from a LiveUpdate policy using the command line?
http://seer.entsupport.symantec.com/docs/304104.htm

So maybe you could script this feeding in a list of clients (editted as necessary) produced by the 'normal' bpplclients command?

Peter_Jakobs
Level 5
Partner Accredited Certified
Thanks Andy,
It's a good starting place, but I hoped somebody already did the scripting part by not reinventing this....
ps master server is running Solaris.

Peter

Andy_Welburn
Level 6

bpplclients -allunique -noheader > CLIENTLIST.txt   (you can edit this for just those clients you're interested in)

cat CLIENTLIST.txt|
while read HARDWARE OS CLIENT
do
bpplclients Live_Update_Policy_Name -internal -add $CLIENT $HARDWARE $OS
done


Or are you looking for something even more "refined"? wink

Maybe looking at various LU policies based on OS or hardware?