From aeb80c8242c6c2d2483c6c396731f455fb841799 Mon Sep 17 00:00:00 2001 From: Instrumental Date: Tue, 21 Aug 2018 10:24:08 -0500 Subject: CA Bootstrapping Issue-ID: AAF-419 Change-Id: I921604ab3bea2550ab12c1db43899a52ab91b166 Signed-off-by: Instrumental --- auth/sample/bin/service.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'auth/sample/bin/service.sh') 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 -- cgit 1.2.3-korg