#!/bin/sh
#*******************************************************************************
#  Copyright 1998 Symbios Inc.  All Rights reserved.                           *
#  This file is confidential and a trade secret of Symbios Inc.  The receipt   *
#  or possession of this file does not convey any rights to reproduce or       *
#  disclose its contents or to manufacture, use, or sell anything it may       *
#  describe, in whole, or in part, without the specific written consent of     *
#  Symbios Inc.                                                                *
#*******************************************************************************

#*******************************************************************************
#
# NAME:		S61rdaclinks
# VERSION:	rm6_1
# UPDATE DATE:	%date_modified: Tue Jun 16 10:22:14 1998 %
# INSPECTED ON:
#
# CONTACTS:
#   Originator:
#   Owner:
#   Backup:
#   Updater:	%created_by:    mgallagh %
#
# DESCRIPTION:
#
#
# NOTES:
#
#
# REFERENCE:
# 1.  Source Code Integrity Measures
#
#
# CODING STANDARD WAIVERS:
#
#
#*******************************************************************************

#*******************************************************************************
# PROCEDURE:	
#
# DESCRIPTION: Executes after S60devlinks in the Solaris boot proceedure.
#	       It corrects the /dev/[r]dsk directories for RDAC
#
# SYNTAX:
#
#
# NOTES:  It goes in the /etc/rcS.d directory
#
#
# RETURNS:
#
#
RMPARAMS_FILE=/etc/raid/rmparams
RM_BOOT_HOME=`grep -v "^#" $RMPARAMS_FILE | grep System_RmBootHomeDirectory | cut -d= -f2`

if [ -n "$_INIT_RECONFIG" ]; then
        echo "Configuring the RAID devices"
        $RM_BOOT_HOME/rdac_disks
fi
