summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-09-06 13:27:15 -0500
committerInstrumental <jonathan.gathman@att.com>2018-09-06 13:27:24 -0500
commit6095e295c4eaef595fefe84c89233c5d87912dd7 (patch)
tree923eb3b22d69da2b3d7c323104e1f61991c6d545
parent08a5c4369d685bcd831d4987a8be9d6c107dbb31 (diff)
remove quotes Java Props
Issue-ID: AAF-420 Change-Id: Id0c0ee18970db397063a47d4a41e7e794a20c3ea Signed-off-by: Instrumental <jonathan.gathman@att.com>
-rw-r--r--auth/sample/bin/client.sh2
-rw-r--r--auth/sample/bin/service.sh2
2 files changed, 2 insertions, 2 deletions
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