#!/bin/sh -e DISTRO=$(lsb_release -si) VERSION=$(lsb_release -sr) ARCH=$(uname -m) if [ "`whoami`" != "root" ] ; then echo "$0: You must be root to run this script" exit 1 fi if [ "$DISTRO" != "ScientificSL" ] && [ "$DISTRO" != "Scientific" ] ; then echo "$0: Error, distro is '$DISTRO', this script is for ScientificSL" exit 1 fi if [ "$VERSION" != "5.3" ] ; then echo <