24 lines
821 B
Diff
24 lines
821 B
Diff
From 3491a6ad30830a8545defa5a417a7db46b093904 Mon Sep 17 00:00:00 2001
|
|
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
|
|
Date: Wed, 17 Mar 2021 12:39:10 +0100
|
|
Subject: [PATCH] awsvip: dont partially match similar IPs during
|
|
monitor-action
|
|
|
|
---
|
|
heartbeat/awsvip | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/heartbeat/awsvip b/heartbeat/awsvip
|
|
index 7d0bf35b6..044d049c6 100755
|
|
--- a/heartbeat/awsvip
|
|
+++ b/heartbeat/awsvip
|
|
@@ -172,7 +172,7 @@ awsvip_monitor() {
|
|
--instance-id "${INSTANCE_ID}" \
|
|
--query 'Reservations[].Instances[].NetworkInterfaces[].PrivateIpAddresses[].PrivateIpAddress[]' \
|
|
--output text | \
|
|
- grep -q "${SECONDARY_PRIVATE_IP}"
|
|
+ grep -qE "(^|\s)${SECONDARY_PRIVATE_IP}(\s|$)"
|
|
RET=$?
|
|
|
|
if [ $RET -ne 0 ]; then
|