Merge "HTK: Dont display keystone user password in ks-user job"

This commit is contained in:
Zuul 2019-01-19 05:52:22 +00:00 committed by Gerrit Code Review
commit 537912e976
1 changed files with 3 additions and 0 deletions

View File

@ -69,7 +69,10 @@ USER_ID=$(openstack user create --or-show --enable -f value -c id \
"${SERVICE_OS_USERNAME}");
# Manage user password (we do this in a seperate step to ensure the password is updated if required)
set +x
echo "Setting user password via: openstack user set --password=xxxxxxx ${USER_ID}"
openstack user set --password="${SERVICE_OS_PASSWORD}" "${USER_ID}"
set -x
# Display user
openstack user show "${USER_ID}"