0

您好我正在尝试安装一个相当长的脚本来在 Rocks 集群 6.0 上安装 infiniband 和 OFED 堆栈

这是我尝试运行的

 user@cluster # /etc/init.d/openibd restart
    /etc/init.d/openibd: line 147: syntax error near unexpected token `;&'
    /etc/init.d/openibd: line 147: `if ( grep -i 'SuSE Linux' /etc/issue >/dev/null 2>&1 ); then'

任何人都可以与我分享修复或确定修复此脚本中的错误的方法吗?在文件 /etc/init.d/openibd

这是脚本的一部分,其中包含指示行上的错误。

CONFIG="/etc/infiniband/openib.conf"

if [ ! -f $CONFIG ]; then

echo No InfiniBand configuration found

exit 0

fi

. $CONFIG

CWD=`pwd`

cd /etc/infiniband

WD=`pwd`

PATH=$PATH:/sbin:/usr/bin

if [ -e /etc/profile.d/ofed.sh ]; then

. /etc/profile.d/ofed.sh

fi

# Only use ONBOOT option if called by a runlevel directory.

# Therefore determine the base, follow a runlevel link name ...

base=${0##*/}

link=${base#*[SK][0-9][0-9]}

# ... and compare them

if [ $link == $base ] ; then

RUNMODE=manual

ONBOOT=yes

else

RUNMODE=auto

fi

ACTION=$1

shift

RESTART=0

max_ports_num_in_hca=0

# Check if OpenIB configured to start automatically

if [ "X${ONBOOT}" != "Xyes" ]; then

exit 0

fi

### ERROR ON FOLLOWING LINE ###
if ( grep -i 'SuSE Linux' /etc/issue >/dev/null 2>&1 ); then

if [ -n "$INIT_VERSION" ] ; then

# MODE=onboot

if LANG=C egrep -L "^ONBOOT=['\"]?[Nn][Oo]['\"]?" ${CONFIG} > /dev/null

; then

exit 0

fi

fi

fi
4

2 回答 2

2

您需要修复一些 HTML 编码。

替换>>,并替换&&

于 2012-05-16T18:52:17.733 回答
0

您的脚本以某种方式将其所有 > 替换为>(并且 & 替换为&等)

if ( grep -i 'SuSE Linux' /etc/issue >/dev/null 2>&1 ); then

                                                       ^^

这是一个语法错误,因为在终止前面命令的分号和 & 号之间没有命令。结果,某些符号的 HTML 编码会混淆 bash 解析器。

于 2012-05-16T18:52:17.750 回答