Use ssh feature install for srvcomm 85/98385/2
authorPatrick Brady <patrick.brady@att.com>
Wed, 13 Nov 2019 21:38:33 +0000 (13:38 -0800)
committerPatrick Brady <patrick.brady@att.com>
Wed, 13 Nov 2019 21:40:12 +0000 (21:40 +0000)
Use the ssh method for feature install, the same way
that all other features are using.

Change-Id: I4f4a1b5d721984435490681f99c81caab80a7c7e
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1744

appc-service-communicator/appc-service-communicator-installer/src/main/resources/scripts/install-feature.sh

index 8369101..17282a8 100755 (executable)
@@ -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