diff options
Diffstat (limited to 'code/makefile_patch.sh')
-rwxr-xr-x | code/makefile_patch.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/code/makefile_patch.sh b/code/makefile_patch.sh index f4ee9184..e25bc40f 100755 --- a/code/makefile_patch.sh +++ b/code/makefile_patch.sh @@ -10,18 +10,22 @@ ############################################################################## TOOLS_PATH=$1 CACHE_PATH=/home/cache +imagebranch="newton" +imageversion="latest" +imageserver="http://120.24.17.215" +imagename="kolla-image-$imagebranch-$imageversion.tgz" if [ ! -d $CACHE_PATH ]; then mkdir -p $CACHE_PATH ; fi if [ ! -f $CACHE_PATH/CentOS-7-x86_64-Minimal-1511.iso ]; then wget -P $CACHE_PATH "http://ftp.osuosl.org/pub/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1511.iso" fi -if [ ! -f $CACHE_PATH/registry-mitaka-latest.tgz ]; then - wget -P $CACHE_PATH "http://daisycloud.org/static/files/registry-mitaka-latest.tgz" +if [ ! -f $CACHE_PATH/$imagename ]; then + wget -P $CACHE_PATH "$imageserver/$imagename" fi if [ ! -f $CACHE_PATH/registry-server.tar ]; then wget -P $CACHE_PATH "http://daisycloud.org/static/files/registry-server.tar" fi cp $CACHE_PATH/CentOS-7-x86_64-Minimal-1511.iso $TOOLS_PATH/setup/bin_temp/ -cp $CACHE_PATH/registry-mitaka-latest.tgz $TOOLS_PATH/setup/bin_temp/ +cp $CACHE_PATH/$imagename $TOOLS_PATH/setup/bin_temp/ cp $CACHE_PATH/registry-server.tar $TOOLS_PATH/setup/bin_temp/ cp $TOOLS_PATH/setup/install_interface_patch.sh $TOOLS_PATH/setup/bin_temp/ chmod +x $TOOLS_PATH/setup/bin_temp/install_interface_patch.sh |