From ed299052be016d3b9cb088091a65e1f833973ff1 Mon Sep 17 00:00:00 2001 From: linggao Date: Tue, 5 Feb 2013 18:34:12 +0000 Subject: [PATCH] fixed defect 3360 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@15065 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/configib | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/xCAT/postscripts/configib b/xCAT/postscripts/configib index 8664f6626..608d28412 100755 --- a/xCAT/postscripts/configib +++ b/xCAT/postscripts/configib @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/sh # IBM(c) 2013 EPL license http://www.eclipse.org/legal/epl-v10.html # xCAT post script for configuring ib adaptors. @@ -183,7 +183,7 @@ do index=$((index+1)) eval netline=\$NETWORKS_LINE$index if [[ -n "$netline" ]]; then - for tmp in `echo "$netline" | tr "\|\|" "\n"` + for tmp in `echo "$netline" | tr "\|" "\n"` do key=`echo "$tmp" | awk -F"=" '{print $1}'`; case $key in @@ -355,5 +355,3 @@ then fi done fi - -