Fix file copy bug with the barbican installer.

The barbican installer (in bin/barbican.sh) is not copying files correctly
to user's environments, which breaks the install. This commit fixes that
issue.

Change-Id: I5fad5332bd329a4ca13b5843127fd6dc033ad45f
This commit is contained in:
jfwood
2014-01-03 16:02:27 -06:00
parent 4d29ec3b18
commit 2fca4f68c3

View File

@ -39,7 +39,7 @@ install_barbican()
sudo mkdir -p $CONFIG_DIR
sudo chown $USER $CONFIG_DIR
fi
cp -rf $LOCAL_CONFIG_DIR/ $CONFIG_DIR
cp -rf $LOCAL_CONFIG_DIR/* $CONFIG_DIR/
# Create a SQLite db location.
if [ ! -d $DB_DIR ];