Merge "Fix software config on rdo"

This commit is contained in:
Zuul 2020-11-16 06:46:30 +00:00 committed by Gerrit Code Review
commit 64f020b602
1 changed files with 3 additions and 3 deletions

View File

@ -20,9 +20,9 @@ mkdir -p $oac_templates/var/run/heat-config
# template for writing heat deployments data to a file
echo "{{deployments}}" > $oac_templates/var/run/heat-config/heat-config
# os-refresh-config scripts directory
# This moves to /usr/libexec/os-refresh-config in later releases
orc_scripts=/opt/stack/os-config-refresh
# os-refresh-config scripts directory.
# For older version, this path might be `/opt/stack/os-config-refresh`
orc_scripts=/usr/libexec/os-refresh-config
for d in pre-configure.d configure.d migration.d post-configure.d; do
install -m 0755 -o root -g root -d $orc_scripts/$d
done