From: Instrumental Date: Thu, 6 Sep 2018 18:27:15 +0000 (-0500) Subject: remove quotes Java Props X-Git-Tag: 2.1.2~63 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aaf%2Fauthz.git;a=commitdiff_plain;h=6095e295c4eaef595fefe84c89233c5d87912dd7 remove quotes Java Props Issue-ID: AAF-420 Change-Id: Id0c0ee18970db397063a47d4a41e7e794a20c3ea Signed-off-by: Instrumental --- diff --git a/auth/sample/bin/client.sh b/auth/sample/bin/client.sh index c0eb2191..a8b8b9a6 100644 --- a/auth/sample/bin/client.sh +++ b/auth/sample/bin/client.sh @@ -119,7 +119,7 @@ if [ ! "$CMD" = "" ]; then if [ "$ADD" = "Y" ]; then echo $2 >> $F else - sed -i.backup -e "s/\\(${1}.*=\\).*/\\1\"${2}\"/" $F + sed -i.backup -e "s/\\(${1}.*=\\).*/\\1${2}/" $F fi cat $F done diff --git a/auth/sample/bin/service.sh b/auth/sample/bin/service.sh index 8ce43fce..33dca67f 100644 --- a/auth/sample/bin/service.sh +++ b/auth/sample/bin/service.sh @@ -92,7 +92,7 @@ if [ ! "$CMD" = "" ]; then echo "$1=$2" >> $F else VALUE=${2//\//\\\/} - sed -i.backup -e "s/\(${1}=\).*/\1\"${VALUE}\"/" $F + sed -i.backup -e "s/\(${1}=\).*/\1${VALUE}/" $F fi cat $F done