aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2018-09-24 17:56:23 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2018-09-26 17:04:24 +0200
commit6bb830d62451e608cca959e5cb00cd383c8cf01d (patch)
treed1ae5c0fdf4975f65644ef5482dfb562d7fde885 /ci
parentc85e28ea54c73e66b264adc11c38ba638397984e (diff)
[ha] Fix missing aodh_version param
_param:aodh_version was lost during a recent refactor, bring it back. While at it, also make chown in entrypoint.sh recursive to prepare for non-sudo deployments. Fixes: c0de0902 Change-Id: I41b225c4a3f15269aa156a1c33412206beff6ee9 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'ci')
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index af60ddfef..a899970fe 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -248,7 +248,7 @@ pushd "${DEPLOY_DIR}" > /dev/null
# Install required packages on jump server
sudo mkdir -p "${MCP_STORAGE_DIR}"
-sudo chown "${USER}:${USER}" "${MCP_STORAGE_DIR}"
+sudo chown -R "${USER}:${USER}" "${MCP_STORAGE_DIR}"
if [ ${USE_EXISTING_PKGS} -eq 1 ]; then
notify "[NOTE] Skipping distro pkg installation" 2
else