From 6bb830d62451e608cca959e5cb00cd383c8cf01d Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Mon, 24 Sep 2018 17:56:23 +0200 Subject: [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 --- ci/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') 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 -- cgit 1.2.3-korg