Is it possible to write a report to monitor the number of tapes in the scratch pool (If the number available to scratch falls below a threshold, I want to be notified)? If so, can someone get me started in the right direction (I'm new to NBU).
if [ $NUMBER -lt $MINSCRATCH ]; then
/bin/echo "There are ONLY $NUMBER tapes in the Scratch pool!!!" | /bin/mail $MAILPERSON
else
/bin/echo "There are $NUMBER tapes in the Scratch pool." | /bin/mail $MAILPERSON
fi
~
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.