#!/bin/sh

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

#
# If there was an /etc/default/lang that the user created, it would've been
# backed up to /etc/default/lang.orig in the preinstall script.  If it's
# there, move it back to the proper name.
#
if [ -f /etc/default/lang.orig ]
then
	mv /etc/default/lang.orig /etc/default/lang
fi

#
# Now run the new mklocalelnks to setup the new locale links.
#
/usr/sbin/mklocalelnks 
