Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7C45E10C25 for ; Mon, 15 Jul 2013 12:59:16 +0000 (UTC) Received: (qmail 89623 invoked by uid 500); 15 Jul 2013 12:59:16 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 89607 invoked by uid 500); 15 Jul 2013 12:59:15 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 89593 invoked by uid 99); 15 Jul 2013 12:59:15 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Jul 2013 12:59:15 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 52CC989D907; Mon, 15 Jul 2013 12:59:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jayapal@apache.org To: commits@cloudstack.apache.org Date: Mon, 15 Jul 2013 12:59:15 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] git commit: updated refs/heads/master to f37567e CLOUDSTACK-3424 Fixed dhcphosts entry and also dhcp_relase for ipv6 Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f37567ef Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f37567ef Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f37567ef Branch: refs/heads/master Commit: f37567ef45fe6e41469a176d387e91840bfae23c Parents: 467fa61 Author: Jayapal Authored: Mon Jul 15 18:12:59 2013 +0530 Committer: Jayapal Committed: Mon Jul 15 18:15:34 2013 +0530 ---------------------------------------------------------------------- patches/systemvm/debian/config/root/edithosts.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f37567ef/patches/systemvm/debian/config/root/edithosts.sh ---------------------------------------------------------------------- diff --git a/patches/systemvm/debian/config/root/edithosts.sh b/patches/systemvm/debian/config/root/edithosts.sh index 2d99586..817d726 100755 --- a/patches/systemvm/debian/config/root/edithosts.sh +++ b/patches/systemvm/debian/config/root/edithosts.sh @@ -96,11 +96,18 @@ wait_for_dnsmasq () { return 1 } -if [ "$ipv4" != '' -a $no_dhcp_release -eq 0 ] +if [ $ipv4 ] +then + ip=$ipv4 +else + ip=$ipv6 +fi + +if [ $no_dhcp_release -eq 0 ] 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 eth0 $ip $(grep $ip $DHCP_LEASES | awk '{print $2}') > /dev/null 2>&1 logger -t cloud "edithosts: released $ipv4" fi @@ -118,7 +125,8 @@ then fi if [ $ipv6 ] then - sed -i /$ipv6,/d $DHCP_HOSTS + #searching with [$ipv6], matching other ip so using $ipv6], + sed -i /$ipv6],/d $DHCP_HOSTS fi # don't want to do this in the future, we can have same VM with multiple nics/entries #sed -i /$host,/d $DHCP_HOSTS