diff options
author | Patrick Brady <patrick.brady@att.com> | 2019-01-18 12:28:08 -0800 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-01-18 21:14:19 +0000 |
commit | 763734c4d961b06b45f0de2d2247bd2c632c3176 (patch) | |
tree | 246ab2d58d6a1978a8f7a930b5bef759764d653a /appc-config/appc-flow-controller/installer/src/main/resources | |
parent | aa8878a2963b963ab9186fe7d8df235e366e41e2 (diff) |
Update install-feature for pre-install
Since the feature zip files will be extracted during docker build,
the install-features scripts need to be modified so that the script
will not fail when the zip file does not exist, since the zip file
will have already been unzipped.
Change-Id: I441064226db956addae5c2f238114ce3965c13ef
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1337
Diffstat (limited to 'appc-config/appc-flow-controller/installer/src/main/resources')
-rwxr-xr-x | appc-config/appc-flow-controller/installer/src/main/resources/scripts/install-feature.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/appc-config/appc-flow-controller/installer/src/main/resources/scripts/install-feature.sh b/appc-config/appc-flow-controller/installer/src/main/resources/scripts/install-feature.sh index 921b91947..0e5496c54 100755 --- a/appc-config/appc-flow-controller/installer/src/main/resources/scripts/install-feature.sh +++ b/appc-config/appc-flow-controller/installer/src/main/resources/scripts/install-feature.sh @@ -30,9 +30,7 @@ REPOZIP=${INSTALLERDIR}/${features.boot}-${project.version}.zip if [ -f ${REPOZIP} ] then unzip -n -d ${ODL_HOME} ${REPOZIP} -else - echo "ERROR : repo zip ($REPOZIP) not found" - exit 1 + fi ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories} |