#!/bin/ksh
#
# ident "@(#)cdrom_wrapper.ksh	1.1 01/04/27 SMI"
#
# Copyright (c) 2001 by Sun Microsystems, Inc.
# All rights reserved.
#

# This script is a wrapper for the utinstall/utpreserve scripts. Those scripts
# have changed location on the CD (they moved under cdrom/cdrom0/sbin 
# directory). This in order to have the same directory structure on the CD and 
# on the system (hence utinstall/utpreserve can use relative pathname to find
# their modules and libraries).

command=$(whence $0)
$(dirname $command)/sbin/$(basename $command) "$@"
