Updated grep regexs for 1710 honeycomb ip and port 27/45027/1
authorjuraj.linkes <jlinkes@cisco.com>
Fri, 13 Oct 2017 13:23:45 +0000 (15:23 +0200)
committerjuraj.linkes <jlinkes@cisco.com>
Fri, 13 Oct 2017 13:23:45 +0000 (15:23 +0200)
Change-Id: I4f1247e9a946e5c11268b3bfac88ec9487fc8782
Signed-off-by: juraj.linkes <jlinkes@cisco.com>
scripts/resource_cleanup.sh

index 1f3388f..e3ff599 100755 (executable)
@@ -253,8 +253,8 @@ clean_overcloud_resource() {
             sleep 1
             service honeycomb start &> /dev/null
             echo "$HOSTNAME: starting honeycomb"
-            HC_IP=$(grep -r restconf-binding-address /opt/honeycomb/config/ | grep -Eo "$IPV4_REGEX")
-            HC_PORT=$(grep -r restconf-port /opt/honeycomb/config/ | grep -Eo [0-9]+)
+            HC_IP=$(grep -rhPo "restconf-binding-address[^0-9]*\K($IPV4_REGEX)" /opt/honeycomb/config/)
+            HC_PORT=$(grep -rhPo "restconf-port[^0-9]*\K([0-9]*)" /opt/honeycomb/config/)
             for i in $(seq 1 $FDIO_TIMEOUT)
             do
                 sleep 1