summaryrefslogtreecommitdiffstats
path: root/auth/sample/bin/service.sh
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-08-21 10:24:08 -0500
committerInstrumental <jonathan.gathman@att.com>2018-08-21 10:24:14 -0500
commitaeb80c8242c6c2d2483c6c396731f455fb841799 (patch)
tree811e55906e896969cd83fedc9b0f724bd186ab5e /auth/sample/bin/service.sh
parent6d8972660b8806a36a4cdc87d1df086b7e34a501 (diff)
CA Bootstrapping
Issue-ID: AAF-419 Change-Id: I921604ab3bea2550ab12c1db43899a52ab91b166 Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/sample/bin/service.sh')
-rw-r--r--auth/sample/bin/service.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/auth/sample/bin/service.sh b/auth/sample/bin/service.sh
index 15c3714d..33dca67f 100644
--- a/auth/sample/bin/service.sh
+++ b/auth/sample/bin/service.sh
@@ -89,9 +89,10 @@ if [ ! "$CMD" = "" ]; then
for F in $FILES; do
echo "Changing $1 in $F"
if [ "$ADD" = "Y" ]; then
- echo $2 >> $F
+ echo "$1=$2" >> $F
else
- sed -i.backup -e "s/\\(${1}.*=\\).*/\\1${2}/" $F
+ VALUE=${2//\//\\\/}
+ sed -i.backup -e "s/\(${1}=\).*/\1${VALUE}/" $F
fi
cat $F
done