diff options
Diffstat (limited to 'scripts/deploy_vlb_scripts.sh')
-rwxr-xr-x | scripts/deploy_vlb_scripts.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/deploy_vlb_scripts.sh b/scripts/deploy_vlb_scripts.sh new file mode 100755 index 00000000..88c431f6 --- /dev/null +++ b/scripts/deploy_vlb_scripts.sh @@ -0,0 +1,11 @@ +#!/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/{} + |