From b86a96b51058e22f9cc7235db8139b13ebf69bd2 Mon Sep 17 00:00:00 2001 From: cjhardee Date: Wed, 28 Apr 2010 19:06:31 +0000 Subject: [PATCH] Messed up the conversion to strict POSIX, just cleaning it up git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5918 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-nbroot/overlay/etc/init.d/S10autodetect | 4 ++-- xCAT-nbroot/overlay/etc/init.d/S11stunnel | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xCAT-nbroot/overlay/etc/init.d/S10autodetect b/xCAT-nbroot/overlay/etc/init.d/S10autodetect index 3f0c14b1e..2421cf002 100755 --- a/xCAT-nbroot/overlay/etc/init.d/S10autodetect +++ b/xCAT-nbroot/overlay/etc/init.d/S10autodetect @@ -96,10 +96,10 @@ done -((extrat=0)) +extrat=0 until [ $extrat = 80 -o -z "$NICSTOWAIT" ]; do sleep 1 - ((extrat=extrat+1)) + extrat=$(($extrat+1)) for nic in $NICSTOWAIT; do if ifconfig $nic|grep "inet addr"; then NICSTOWAIT=`echo $NICSTOWAIT|sed -e s/$nic//` diff --git a/xCAT-nbroot/overlay/etc/init.d/S11stunnel b/xCAT-nbroot/overlay/etc/init.d/S11stunnel index 5f003a462..8b4b7ed03 100755 --- a/xCAT-nbroot/overlay/etc/init.d/S11stunnel +++ b/xCAT-nbroot/overlay/etc/init.d/S11stunnel @@ -22,12 +22,12 @@ if [ ! -z "$XCATDEST" ]; then echo 'connect='$XCATDEST >> /etc/stunnel/stunnel.conf fi if [ -r /tmp/dhcpserver ]; then - ((i=400)); + i=400; for srv in `cat /tmp/dhcpserver`; do echo "[xcatd$i]" >> /etc/stunnel/stunnel.conf echo "accept=127.0.0.1:$i" >> /etc/stunnel/stunnel.conf echo "connect="$srv":"$XCATPORT >> /etc/stunnel/stunnel.conf - ((i=i+1)) + i=$(($i+1)) done fi mkdir -p /usr/var/run/stunnel