From 71984d1bffa966c366d47464a3acf4b440c9c7c9 Mon Sep 17 00:00:00 2001 From: platania Date: Fri, 17 Feb 2017 16:23:59 -0500 Subject: POM reorganization Change-Id: I38076a941f6038aa8d5e67e2133c48231193430b Signed-off-by: platania --- scripts/deploy.sh | 6 +++++- scripts/deploy_boot.sh | 11 ----------- scripts/deploy_heat.sh | 11 ----------- scripts/deploy_vfw_scripts.sh | 11 ----------- scripts/deploy_vlb_scripts.sh | 11 ----------- 5 files changed, 5 insertions(+), 45 deletions(-) delete mode 100755 scripts/deploy_boot.sh delete mode 100755 scripts/deploy_heat.sh delete mode 100755 scripts/deploy_vfw_scripts.sh delete mode 100755 scripts/deploy_vlb_scripts.sh (limited to 'scripts') diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 3cfe1945..e1c0bbba 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -1,7 +1,7 @@ #!/bin/bash ########## Define parameters ########## -VERSION="1.0.0" +VERSION="1.0.0-SNAPSHOT" PATH_TO_BOOT="../boot" PATH_TO_HEAT="../heat" @@ -34,3 +34,7 @@ ls | xargs -I{} curl -k --netrc-file '${NETRC}' --upload-file {} $REPO_URL/$VFW_ cd $PATH_TO_VLB ls | xargs -I{} curl -k --netrc-file '${NETRC}' --upload-file {} $REPO_URL/$VLB_GROUP_ID/$VERSION/{} #################################################### + +########## Clean up ########## +rm ${NETRC} +############################## diff --git a/scripts/deploy_boot.sh b/scripts/deploy_boot.sh deleted file mode 100755 index fb256559..00000000 --- a/scripts/deploy_boot.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -source repo_config.txt - -SOURCE_DIR=../boot -GROUP_ID=org.openecomp.demo.boot -VERSION=1.0.0 - -cd $SOURCE_DIR -ls | xargs -I{} curl -v -u $REPO_USERNAME:$REPO_PASSWORD --upload-file {} $REPO_URL/$GROUP_ID/$VERSION/{} - diff --git a/scripts/deploy_heat.sh b/scripts/deploy_heat.sh deleted file mode 100755 index 74a16201..00000000 --- a/scripts/deploy_heat.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -source repo_config.txt - -SOURCE_DIR=../heat -GROUP_ID=org.openecomp.demo.heat -VERSION=1.0.0 - -cd $SOURCE_DIR -ls | xargs -I{} curl -v -u $REPO_USERNAME:$REPO_PASSWORD --upload-file {} $REPO_URL/$GROUP_ID/$VERSION/{} - diff --git a/scripts/deploy_vfw_scripts.sh b/scripts/deploy_vfw_scripts.sh deleted file mode 100755 index 49e7b019..00000000 --- a/scripts/deploy_vfw_scripts.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -source repo_config.txt - -SOURCE_DIR=../vnfs/vFW/scripts -GROUP_ID=org.openecomp.demo.vnf.vfw -VERSION=1.0.0 - -cd $SOURCE_DIR -ls | xargs -I{} curl -v -u $REPO_USERNAME:$REPO_PASSWORD --upload-file {} $REPO_URL/$GROUP_ID/$VERSION/{} - diff --git a/scripts/deploy_vlb_scripts.sh b/scripts/deploy_vlb_scripts.sh deleted file mode 100755 index 88c431f6..00000000 --- a/scripts/deploy_vlb_scripts.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -source repo_config.txt - -SOURCE_DIR=../vnfs/vLB/scripts -GROUP_ID=org.openecomp.demo.vnf.vlb -VERSION=1.0.0 - -cd $SOURCE_DIR -ls | xargs -I{} curl -v -u $REPO_USERNAME:$REPO_PASSWORD --upload-file {} $REPO_URL/$GROUP_ID/$VERSION/{} - -- cgit 1.2.3-korg