From: Jeremy Mordkoff Date: Wed, 13 Dec 2017 22:58:04 +0000 (-0500) Subject: making the installer more robust X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=74fde89f3e77a41b644664f959b54ed38a6c6ab5;p=osm%2Fdevops.git making the installer more robust --- diff --git a/installers/install_osm.sh b/installers/install_osm.sh index 550581f0..ae1fe0b7 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -153,7 +153,7 @@ function so_is_up() { timelength=300 while [ $time -le $timelength ] do - if [[ `curl -k -X GET https://$SO_IP:8008/api/operational/vcs/info \ + if [[ `curl -m 10 -k -X GET https://$SO_IP:8008/api/operational/vcs/info \ -H 'accept: application/vnd.yang.data+json' \ -H 'authorization: Basic YWRtaW46YWRtaW4=' \ -H 'cache-control: no-cache' 2> /dev/null | jq '.[].components.component_info[] | select(.component_name=="RW.Restconf")' 2>/dev/null | grep "RUNNING" | wc -l` -eq 1 ]] @@ -249,7 +249,7 @@ function configure_SOUI(){ --header 'cache-control: no-cache' \ --header 'content-type: application/vnd.yang.data+json' &> /dev/null) - if [ "$current" != "{}" ]; then + if [ -n "$current" -a "$current" != "{}" ]; then curl -k --request DELETE \ --url https://$SO_CONTAINER_IP:8008/api/config/config-agent/account/osmjuju \ --header 'accept: application/vnd.yang.data+json' \