From 5f0d15ad70098510a3782d6fd18d6eacfb51b0cf Mon Sep 17 00:00:00 2001 From: Oyvind Albrigtsen Date: Thu, 16 Jan 2020 14:59:26 +0100 Subject: [PATCH] IPsrcaddr: remove hardcoded device when using destination parameter --- heartbeat/IPsrcaddr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heartbeat/IPsrcaddr b/heartbeat/IPsrcaddr index 0ef8b391f..7cdc3a9fe 100755 --- a/heartbeat/IPsrcaddr +++ b/heartbeat/IPsrcaddr @@ -262,7 +262,7 @@ srca_stop() { OPTS="" if [ "$OCF_RESKEY_destination" != "0.0.0.0/0" ] ;then - PRIMARY_IP="$($IP2UTIL -4 -o addr show dev eth0 primary | awk '{split($4,a,"/");print a[1]}')" + PRIMARY_IP="$($IP2UTIL -4 -o addr show dev $INTERFACE primary | awk '{split($4,a,"/");print a[1]}')" OPTS="proto kernel scope host src $PRIMARY_IP" fi