Merge "remove startODL string check"
authorBrian Freeman <bf1936@att.com>
Tue, 23 Apr 2019 23:54:38 +0000 (23:54 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 23 Apr 2019 23:54:38 +0000 (23:54 +0000)
kubernetes/appc/resources/config/appc/opt/onap/appc/bin/health_check.sh

index 481163a..825f7ab 100755 (executable)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-startODL_status=$(ps -e | grep startODL | wc -l)
 waiting_bundles=$(/opt/opendaylight/current/bin/client bundle:list | grep Waiting | wc -l)
 run_level=$(/opt/opendaylight/current/bin/client system:start-level)
 
-  if [ "$run_level" == "Level 100" ] && [ "$startODL_status" -lt "1" ] && [ "$waiting_bundles" -lt "1" ]
+  if [ "$run_level" == "Level 100" ] && [ "$waiting_bundles" -lt "1" ]
   then
     echo APPC is healthy.
   else