20d965c864
Use docker.io/openstackmagnumtest initially. Change-Id: Idfb5ba636df2928e2e3e5248fdcaabd63160a4a4 Signed-off-by: Spyros Trigazis <spyridon.trigazis@cern.ch>
37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
#!/bin/bash
|
|
set -eux
|
|
|
|
# initial /etc/os-collect-config.conf
|
|
cat <<EOF >/etc/os-collect-config.conf
|
|
[DEFAULT]
|
|
command = os-refresh-config
|
|
EOF
|
|
|
|
# os-refresh-config scripts directory
|
|
# This moves to /usr/libexec/os-refresh-config in later releases
|
|
# Be sure to have this dir mounted and created by config.json and tmpfiles
|
|
orc_scripts=/opt/stack/os-config-refresh
|
|
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
|
|
|
|
# os-refresh-config script for running os-apply-config
|
|
cat <<EOF >$orc_scripts/configure.d/20-os-apply-config
|
|
#!/bin/bash
|
|
set -ue
|
|
|
|
exec os-apply-config
|
|
EOF
|
|
|
|
chmod 700 $orc_scripts/configure.d/20-os-apply-config
|
|
cp /opt/heat-container-agent/scripts/55-heat-config $orc_scripts/configure.d/55-heat-config
|
|
chmod 700 $orc_scripts/configure.d/55-heat-config
|
|
cp /opt/heat-container-agent/scripts/50-heat-config-docker-compose $orc_scripts/configure.d/50-heat-config-docker-compose
|
|
chmod 700 $orc_scripts/configure.d/50-heat-config-docker-compose
|
|
|
|
mkdir -p /var/lib/heat-config/hooks
|
|
cp /opt/heat-container-agent/hooks/* /var/lib/heat-config/hooks/
|
|
chmod 755 /var/lib/heat-config/hooks/atomic
|
|
chmod 755 /var/lib/heat-config/hooks/docker-compose
|
|
chmod 755 /var/lib/heat-config/hooks/script
|