Revert "Test gerrit review process on experimental branch."

This reverts commit faba4c3767.

Change-Id: Id12e6534624cf42a51c3960ac091287f55b1a631
This commit is contained in:
Terry Yao 2014-09-17 08:22:50 +00:00
parent faba4c3767
commit 1126d31be6
1 changed files with 0 additions and 35 deletions

View File

@ -1,35 +0,0 @@
# Copyright 2013 IBM Corp.
#!/bin/sh
#
# This script is for link powervc common code to each powervc modules.
#
target="common-powervc/powervc/common"
pushd .
cd $target && target=`pwd`
popd
declare -a components
declare -a linktopaths
components=(
nova
cinder
glance
neutron
);
pvc="powervc"
for ((i=0; i<${#components[@]}; i++));
do
linktopaths[$i]="${components[$i]}-$pvc/$pvc"
if [[ $1 == '-del' ]]; then
rm ${linktopaths[$i]}/common
else
ln -s $target ${linktopaths[$i]}
fi
done;