From: Taka Cho Date: Fri, 5 Mar 2021 19:57:31 +0000 (-0500) Subject: change shell for disable feature in csit X-Git-Tag: 2.3.0~49 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F72%2F118872%2F2;p=policy%2Fdocker.git change shell for disable feature in csit there is no bash in container hence need to change to sh Issue-ID: POLICY-2895 Change-Id: I5b5ffb028e478a93e09e9ed6926c6478da15e0ef Signed-off-by: Taka Cho --- diff --git a/csit/config/drools-apps/custom/features.pre.sh b/csit/config/drools-apps/custom/features.pre.sh index e9c77a0f..fd7b5b91 100755 --- a/csit/config/drools-apps/custom/features.pre.sh +++ b/csit/config/drools-apps/custom/features.pre.sh @@ -1,4 +1,4 @@ -#!/bin/bash -x +#!/bin/sh # ============LICENSE_START=================================================== # Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. # ============================================================================ @@ -15,4 +15,4 @@ # limitations under the License. # ============LICENSE_END===================================================== -bash -c "features disable distributed-locking" +sh -c "features disable distributed-locking"