fbb2401861
Previously, we installed all files in contrib/devstack, which includes a sample localrc file which should not be used. Change-Id: I5e73a42509e339e3f1a576b3e44ee00413fa566c
16 lines
282 B
Bash
Executable File
16 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# Install designate devstack integration
|
|
pushd $BASE/new/designate/contrib/devstack
|
|
|
|
for f in lib/* extras.d/* exercises/*; do
|
|
if [ ! -e "$BASE/new/devstack/$f" ]; then
|
|
echo "Installing: $f"
|
|
cp -r $f $BASE/new/devstack/$f
|
|
fi
|
|
done
|
|
|
|
popd
|