cue/contrib/devstack/install.sh
Endre Karlson 5ff7a90c79 Add Devstack integration
Change-Id: I74f807e52fe1a7dd1521c3d1551b4fe0b17db4a3
2015-02-20 15:08:51 -08:00

15 lines
262 B
Bash
Executable File

#!/bin/bash
DIR=$(readlink -e $(dirname $(readlink -f $0)))
pushd $DIR
for f in lib/* extras.d/*; do
if [ ! -e "$DIR/../../../devstack/$f" ]; then
echo "Installing symlink for $f"
ln -fs $DIR/$f $DIR/../../../devstack/$f
fi
done
popd