#!/bin/sh -e DISTRO=$(lsb_release -si) VERSION=$(lsb_release -sr) ARCH=$(uname -m) if [ "$DISTRO" != "CentOS" ] ; then echo "$0: Error, distro is '$DISTRO', this script is for CentOS" exit 1 fi if [ "$VERSION" != "5.4" ] ; then echo <