diff options
author | Jack Lucas <jflucas@research.att.com> | 2020-05-18 18:23:38 -0400 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2020-06-12 09:39:23 -0400 |
commit | ec3410a8478bedba8a06efb02f1610c2ebfdf130 (patch) | |
tree | 59b8a007f1d76fc1b3a8eadc36825a5f28e1201d /cm-container/scripts/readiness-check.sh | |
parent | a774ad9f309576a61db9689f5315f2577e507b25 (diff) |
Move plugin upload to CM container
Issue-ID: DCAEGEN2-2236
Issue-ID: DCAEGEN2-1789
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Change-Id: Ibc4612dedbf73a17a237b88abe198add391b82de
Diffstat (limited to 'cm-container/scripts/readiness-check.sh')
-rw-r--r-- | cm-container/scripts/readiness-check.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cm-container/scripts/readiness-check.sh b/cm-container/scripts/readiness-check.sh index a7e92ab..d706c0d 100644 --- a/cm-container/scripts/readiness-check.sh +++ b/cm-container/scripts/readiness-check.sh @@ -2,7 +2,7 @@ # ============LICENSE_START======================================================= # org.onap.dcae # ================================================================================ -# Copyright (c) 2019 AT&T Intellectual Property. All rights reserved. +# Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -24,12 +24,14 @@ # /opt/manager/extra-resolver-rules-loaded. # -- All Cloudify Manager services must be running, as # indicated by the output of the cfy status command. +# -- The plugins have been loaded. This is indicated by the +# presence of the /opt/manager/plugins-loaded file. -RULES_LOADED=/opt/manager/extra-resolver-rules-loaded +PLUGINS_LOADED=/opt/manager/plugins-loaded set -x -if [[ -f $RULES_LOADED ]] +if [[ -f $PLUGINS_LOADED ]] then # Check for all services running if /scripts/cloudify-ready.sh |