From cf244a1b8b9c8562c00a5622f67f9542e57e353f Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Mon, 25 Jun 2012 17:12:35 +0200 Subject: s3:test: make shell code more porable by elimnating "local" keyword MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit don't use "local". That is BASH only. Autobuild-User(master): Björn Jacke Autobuild-Date(master): Mon Jun 25 19:02:13 CEST 2012 on sn-devel-104 --- source3/script/tests/test_net_registry_roundtrip.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3') diff --git a/source3/script/tests/test_net_registry_roundtrip.sh b/source3/script/tests/test_net_registry_roundtrip.sh index 050311a814..f2158879e3 100755 --- a/source3/script/tests/test_net_registry_roundtrip.sh +++ b/source3/script/tests/test_net_registry_roundtrip.sh @@ -66,9 +66,9 @@ conf_roundtrip_step() { LOGDIR_PREFIX="conf_roundtrip" conf_roundtrip() -{ - local DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXXXX) - local LOG=$DIR/log +( + DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXXXX) + LOG=$DIR/log echo conf_roundtrip $1 > $LOG @@ -144,7 +144,7 @@ conf_roundtrip() return 1 fi rm -r $DIR -} +) CONF_FILES=$SERVERCONFFILE -- cgit