From bdfa6e62a885b4a37171478a7982605eff119d6c Mon Sep 17 00:00:00 2001 From: Patrick Brady Date: Wed, 13 Nov 2019 13:38:33 -0800 Subject: [PATCH] Use ssh feature install for srvcomm Use the ssh method for feature install, the same way that all other features are using. Change-Id: I4f4a1b5d721984435490681f99c81caab80a7c7e Signed-off-by: Patrick Brady Issue-ID: APPC-1744 --- .../src/main/resources/scripts/install-feature.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appc-service-communicator/appc-service-communicator-installer/src/main/resources/scripts/install-feature.sh b/appc-service-communicator/appc-service-communicator-installer/src/main/resources/scripts/install-feature.sh index 836910190..17282a8db 100755 --- a/appc-service-communicator/appc-service-communicator-installer/src/main/resources/scripts/install-feature.sh +++ b/appc-service-communicator/appc-service-communicator-installer/src/main/resources/scripts/install-feature.sh @@ -38,7 +38,8 @@ fi COUNT=0 while [ $COUNT -lt 10 ]; do - ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories} 2> /tmp/installErr +# ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories} 2> /tmp/installErr + sshpass -pkaraf ssh -o StrictHostKeyChecking=no karaf@localhost -p 8101 "feature:repo-add ${features.repositories}" 2> /tmp/installErr cat /tmp/installErr if grep -q 'Failed to get the session' /tmp/installErr; then sleep 10 -- 2.16.6