#!/bin/sh
 
PKGINFO=/bin/pkginfo
PKGRM=/usr/sbin/pkgrm
 
#
# Run terminfo translater
#
 
 
if  [ -x /usr/bin/tic ] 
then
	/usr/bin/tic /usr/dt/config/dtterm.ti
	if [ $? -eq 0 ]
	then
                exit 0
        else 
                exit 1
        fi
fi

