mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6665: A fix for vpc routers not releasing dhcp leases.
Signed-off-by: Sebastien Goasguen <runseb@gmail.com>
This commit is contained in:
parent
dae442e091
commit
6d0650bbcd
|
|
@ -99,7 +99,7 @@ if [ $dnsmasq_managed_lease -eq 1 ]
|
|||
then
|
||||
#release previous dhcp lease if present
|
||||
logger -t cloud "edithosts: releasing $ipv4"
|
||||
dhcp_release eth0 $ipv4 $(grep "$ipv4 " $DHCP_LEASES | awk '{print $2}') > /dev/null 2>&1
|
||||
dhcp_release $(ip route get "$ipv4/32" | grep " dev " | sed -e "s/^.* dev \([^ ]*\) .*$/\1/g") $ipv4 $(grep "$ipv4 " $DHCP_LEASES | awk '{print $2}') > /dev/null 2>&1
|
||||
logger -t cloud "edithosts: released $ipv4"
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue