Merge "Fix homedir permissions"

This commit is contained in:
Zuul 2022-12-09 16:03:50 +00:00 committed by Gerrit Code Review
commit a9f26e1f9f
1 changed files with 7 additions and 0 deletions

View File

@ -294,6 +294,13 @@ function _install_post_devstack {
install_dstat
start_dstat
fi
if [[ "$IS_GATE" != "True" ]]; then
# Ensure home directory for the ``stack`` user has executable
# permissions for all. Only for local (non-gate) installations.
# Check https://review.opendev.org/c/openstack/devstack/+/838645
chmod +x $HOME
fi
}