diff options
author | Praneta Paithankar <praneta.paithankar@intel.com> | 2018-08-14 06:05:42 -0700 |
---|---|---|
committer | Praneta Paithankar <praneta.paithankar@intel.com> | 2018-08-14 06:10:26 -0700 |
commit | f70c445c50b1f6f5e4c8ef39b6da0d835221984f (patch) | |
tree | 9c4e509315fc06217d0f7b77856f2e993cbd9bb9 /heat/vCPE | |
parent | b2c608a794d454fffc738e691919fddf5ca1578b (diff) |
Change install_script_version to script_version
The build_vcpe_vgmux.yaml contains install_script_version parameter in
nexus artifact url. This parameter is changed to script_version.
Issue-ID: INT-615
Change-Id: I80ce688ff09b07069661d449abeb6b78da1667d3
Signed-off-by: Praneta Paithankar <praneta.paithankar@intel.com>
Diffstat (limited to 'heat/vCPE')
-rw-r--r-- | heat/vCPE/vgmux/build_vcpe_vgmux.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/vCPE/vgmux/build_vcpe_vgmux.yaml b/heat/vCPE/vgmux/build_vcpe_vgmux.yaml index ea007666..f7d843d7 100644 --- a/heat/vCPE/vgmux/build_vcpe_vgmux.yaml +++ b/heat/vCPE/vgmux/build_vcpe_vgmux.yaml @@ -204,7 +204,7 @@ resources: # Download and run install script apt-get -y install unzip if [[ "__script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi - curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vcpe&a=vcpe-scripts&e=zip&v=__install_script_version__" -o /opt/vcpe-scripts-__script_version__.zip + curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vcpe&a=vcpe-scripts&e=zip&v=__script_version__" -o /opt/vcpe-scripts-__script_version__.zip unzip -j /opt/vcpe-scripts-__script_version__.zip -d /opt v_gmux_build.sh cd /opt chmod +x v_gmux_build.sh |