#!/bin/sh
#
# $Revision$
# postpatch script for NetBackup Server
#  Used to replace NetBackup Java file NB-Java.tar.Z

Latest=/usr/openv/NB-Java.tar.pre50_1_M.Z
if [ -r $Latest ] ; then
	/bin/cp -p $Latest /usr/openv/NB-Java.tar.Z
	rm $Latest
	echo " In order to update any NetBackup Java Clients, run:"
	echo "  /usr/openv/netbackup/bin/update_clients -Install_Java"
fi
exit 0
