#! /bin/sh
#ifdef IDENT
#ident "@(#)postinstall 1.1 96/12/18 Copyright (c) 1996, Legato Systems, Inc."
#endif

DIR=$ORACLE_HOME/dbs
if [ x$PKG_INSTALL_ROOT != x ]; then
    DIR=$PKG_INSTALL_ROOT/$DIR
fi

# Let these commands fail if need be, but exit cleanly.

chown $ORA_SID $DIR/init.utl $DIR/init${ORA_SID}.utl
chgrp bin $DIR/init.utl $DIR/init${ORA_SID}.utl

exit 0

