#!/bin/sh

# 
# Script to be run after the files from the "syadm" patch are installed.
#

#
# Because a TEXT file was modified, the message database must be rebuilt
# on the target machine.  This postinstall is to be used only with the 
# ENGLISH version.
#

SYSADMIN_ROOT=/usr/snadm/sysadmin
${SYSADMIN_ROOT}/tools/bldmsgdb -d ${SYSADMIN_ROOT}/locale/C 
if [ $? -ne 0 ] ; then
	echo "\nERROR: Could not rebuild Sysadmin message database!\n"
	exit 1
else
	exit 0
fi
