command to display the schedule name of the policies
Created: 16 Jan 2013 | Updated: 07 Feb 2013 | 4 comments
This issue has been solved. See solution.
Hi Team,
need help here.
May i know the command that displayed the schedule name of the policies.
i used bppllist -U but its only display the policy name.
i just want to display also the schedule name.
sample:
policy name schedule name
test Full backups
regards
Discussion Filed Under:
Comments 4 Comments • Jump to latest comment
Hi,
Check this thread may be help
https://www-secure.symantec.com/connect/forums/need-netbackup-scripts-pull-policy-name-schedule-freq-backups-retention-period-backup-selecti
Thanks In Advance
Ashish Sharma
SEPM Knowledgebase Documents
use bpplinfo <PolicyName> -U
Did you try this? bpplist -U -allpolicies
Both two below works.
# /usr/openv/netbackup/bin/admincmd/bppllist -allpolicies -l |awk '$1=="CLASS"{policy=$2}$1=="SCHED"{print policy,$2}'
# /usr/openv/netbackup/bin/admincmd/bppllist -allpolicies -l |while read i j k;do case $i in CLASS) policy=$j;;SCHED) echo "$policy $j";;esac;done
Authorized Symantec Consultant(ASC) Data Protection in Tokyo, Japan
Would you like to reply?
Login or Register to post your comment.