diff options
author | Taka Cho <takamune.cho@att.com> | 2021-03-05 14:57:31 -0500 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2021-03-05 15:36:57 -0500 |
commit | 8da6a34cfb76c8d4a02099c394859f791cd52f5b (patch) | |
tree | 1b86a58a7b05ad0c678afeaed33a1d6ecc608ffa /csit/config | |
parent | 2391d153cc34dcdcccdf622a45aff4a1e7a829ca (diff) |
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 <takamune.cho@att.com>
Diffstat (limited to 'csit/config')
-rwxr-xr-x | csit/config/drools-apps/custom/features.pre.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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" |