CLOUDSTACK-5986: Fix dnsmasq lease for VPC
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/657d0429 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/657d0429 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/657d0429 Branch: refs/heads/4.3 Commit: 657d042953e40e3220c5b0b86511f3bf6a1e186f Parents: 94817c1 Author: Sheng Yang <[email protected]> Authored: Wed Mar 12 18:02:31 2014 -0700 Committer: Sheng Yang <[email protected]> Committed: Fri Mar 14 13:38:42 2014 -0700 ---------------------------------------------------------------------- systemvm/patches/debian/config/root/edithosts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/657d0429/systemvm/patches/debian/config/root/edithosts.sh ---------------------------------------------------------------------- diff --git a/systemvm/patches/debian/config/root/edithosts.sh b/systemvm/patches/debian/config/root/edithosts.sh index 8e7ddac..d6ff983 100755 --- a/systemvm/patches/debian/config/root/edithosts.sh +++ b/systemvm/patches/debian/config/root/edithosts.sh @@ -95,7 +95,7 @@ wait_for_dnsmasq () { return 1 } -if [ $dnsmasq_managed_lease ] +if [ $dnsmasq_managed_lease -eq 1 ] then #release previous dhcp lease if present logger -t cloud "edithosts: releasing $ipv4" @@ -212,7 +212,7 @@ pid=$(pidof dnsmasq) if [ "$pid" != "" ] then # use SIGHUP to avoid service outage if dhcp_release is available. - if [ $dnsmasq_managed_lease ] + if [ $dnsmasq_managed_lease -eq 1 ] then kill -HUP $pid else
