From 7077be66623b911d95bec3c463d53b535371411e Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Thu, 3 May 2018 15:06:24 +0200 Subject: [PATCH] install_osm.sh: proper read of juju account info Change-Id: I8b0e8d3f0fd5c7ae3d45324deb341bc7dc674246 Signed-off-by: garciadeblas --- installers/install_osm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/install_osm.sh b/installers/install_osm.sh index 9ba080ab..87caad34 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -561,7 +561,7 @@ EONG function generate_docker_env_files() { echo "Generating docker env files" OSMLCM_VCA_HOST=`juju show-controller|grep api-endpoints|awk -F\' '{print $2}'|awk -F\: '{print $1}'` - OSMLCM_VCA_SECRET=`grep password /home/ubuntu/.local/share/juju/accounts.yaml |awk '{print $2}'` + OSMLCM_VCA_SECRET=`grep password ${HOME}/.local/share/juju/accounts.yaml |awk '{print $2}'` MYSQL_ROOT_PASSWORD=`date +%s | sha256sum | base64 | head -c 32` echo "OSMLCM_VCA_HOST=${OSMLCM_VCA_HOST}" |sudo tee ${OSM_DEVOPS}/installers/docker/lcm.env echo "OSMLCM_VCA_SECRET=${OSMLCM_VCA_SECRET}" |sudo tee -a ${OSM_DEVOPS}/installers/docker/lcm.env -- 2.25.1