
We have not been testing this code for quite a some time and there has been little interest in maintaining it. The change removes all Centos related code to reduce the maintenance burden. See the related discussion [1]. [1] https://lists.openstack.org/archives/list/openstack-discuss@lists.openstack.org/thread/GWRYBFSYE3ZLW64WK2ECIOGN3QZYYLTD/ Change-Id: Id1c6bb5c9c486c62f28feb7ba429f7af84e88db0
11 lines
261 B
Bash
Executable File
11 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
: ${COPY_DEFAULT_CONFIG_FILES:="no"}
|
|
|
|
if [[ $COPY_DEFAULT_CONFIG_FILES == "yes" ]] && [[ ! ${PROJECT} =~ ^requirements$ ]]; then
|
|
mkdir -p "/etc/${PROJECT}/"
|
|
cp -r "/var/lib/openstack/etc/${PROJECT}"/* "/etc/${PROJECT}/" || true
|
|
fi
|