deb-designate/contrib/devstack/pre_test_hook.sh
Kiall Mac Innes fbb2401861 Install only the necessary files during a DevStack gate run
Previously, we installed all files in contrib/devstack, which includes
a sample localrc file which should not be used.

Change-Id: I5e73a42509e339e3f1a576b3e44ee00413fa566c
2014-07-25 15:56:57 -07:00

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