while :
do
	tput bold
	echo Please Read the following License Agreement:
	tput rmso
	sleep 2
	echo "INTEL SOFTWARE LICENSE AGREEMENT 

IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. 
Do not use or load this software and any associated 
materials (collectively, the "Software") until you have 
carefully read the following terms and conditions. By 
loading or using the Software, you agree to the terms of 
this Agreement. If you do not wish to so agree, do not 
install or use the Software.

Copyright (c) 2001-2003 Intel Corporation. 

This software program is available to you under the 
following license.

			Intel BSD + Patent License

Recipient has requested a license and Intel Corporation 
("Intel") is willing to grant a license for the software
entitled "panicsel" (the "Software")being provided by Intel
Corporation.  The following definitions apply to this
License: "Licensed Patents" means patent claims licensable
by Intel Corporation which are necessarily infringed by the
use or sale of the Software alone or when combined with the
operating system referred to below.

"Recipient" means the party to whom Intel delivers this
Software. "Licensee" means Recipient and those third parties
that receive a license to any operating system available under
the GNU Public License version 2.0 or later.

Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
 
The license is provided to Recipient and Recipient's
Licensees under the following terms:

Redistribution and use in source and binary forms of the
Software, with or without modification, are permitted provided
that the following conditions are met: Redistributions of
source code of the Software may retain the above copyright
notice, this list of conditions and the following disclaimer. 
Redistributions in binary form of the Software may reproduce
the above copyright notice, this list of conditions and the
following disclaimer in the documentation and/or other materials
provided with the distribution.

Neither the name of Intel Corporation nor the names of its
contributors shall be used to endorse or promote products
derived from this Software without specific prior written
permission. Intel hereby grants Recipient and Licensees a
non-exclusive, worldwide, royalty-free patent license under
Licensed Patents to make, use, sell, offer to sell, import
and otherwise transfer the Software, if any, in source code
and object code form.

This license shall include changes to the Software that are
error corrections or other minor changes to the Software that
do not add functionality or features when the Software is
incorporated in any version of a operating system that has
been distributed under the GNU General Public License 2.0
or later.  

This patent license shall apply to the combination of the
Software and any operating system licensed under the GNU
Public License version 2.0 or later if, at the time Intel
provides the Software to Recipient, such addition of the
Software to the then publicly available versions of such
operating system available under the GNU Public License
version 2.0 or later (whether in gold, beta or alpha form)
causes such combination to be covered by the Licensed Patents.

The patent license shall not apply to any other combinations
that include the Software.  No hardware per se is licensed
hereunder. 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR ITS CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

NO SUPPORT IS PROVIDED FOR OR WITH THIS SOFTWARE.

	
Svr/eula (sg) 1/22/97" | more

	echo
	echo "NOTE: if you choose \"No\", installation will not continue. To install
	Intel Server Management, you must accept this agreement."
	echo
	echo "Do you accept all the terms of preceding License Agreement?"
	echo "Please press \"y\" for yes, \"n\" for no and \"r\" for reprint."
	echo "[y/n/r] ?"
	read response
	input_ready=y
		
	while [ "$input_ready" != "n" ]
	do
		case "$response" in
			"N" | "n" )
				echo Exiting Install..
				exit 1
				;;
			"Y" | "y" )
				VERSION=`uname -r|sed "s/-/./"`
                                case "$VERSION" in
					   "2.4.18.3" )
                                        echo 
                                        ;;
					   "2.4.18.3smp" )
                                        echo
                                        ;;
					   "2.4.18.14" )
                                        echo
                                        ;;
					   "2.4.18.14bigmem" )
                                        echo
                                        ;;
					   "2.4.18.14smp" )
                                        echo
                                        ;;
                                   * )
                                        echo "Unable to install IPMI driver for this kernel version $VERSION"
                                        exit 0
                                        ;;
                                esac
				if [ ! -f ipmidrvr-$VERSION-1.i386.rpm ]; then
					echo "This kernel requires an IPMI driver RPM that is not available. You need ipmidrvr-$VERSION-1.i386.rpm"
				else
				   echo "Installing ipmidrvr-$VERSION-1.i386.rpm"
			 	   rpm -i ipmidrvr-$VERSION-1.i386.rpm >/dev/null 
				   echo "Installing AUTOSERVERCFG-1.0-5.i386.rpm"
				   rpm -i AUTOSERVERCFG-1.0-5.i386.rpm
				fi
				exit 0
				;;
			"R" | "r" )
				input_ready=n
				echo
				;;
			*)
				echo
				echo Error: Invalid Input \"$response\"
				echo "Do you accept all the terms of preceding License Agreement?"
				echo "Please press \"y\" for yes, \"n\" for no and \"r\" for reprint."
				echo "[y/n/r] ?"
				read response
				input_ready=y
				;;
		esac
		done
	
done
